gbaconv

A set of tools aimed at GameBoy Advance developers
Log | Files | Refs | README | LICENSE

Makefile (402B)


      1 #
      2 # GBAconv 1.00
      3 # Copyright (c) 2002-2019, Frederic Cambus
      4 # https://github.com/fcambus/gbaconv
      5 #
      6 # Last Updated: 2019-02-21
      7 #
      8 # GBAconv is released under the BSD 2-Clause license.
      9 # See LICENSE file for details.
     10 #
     11 
     12 CC ?= cc
     13 CFLAGS += -D_FORTIFY_SOURCE=2 -O2 -std=c99 -Wall -pedantic
     14 
     15 all:
     16 	$(CC) $(CFLAGS) -o pcx2gba pcx2gba.c
     17 	$(CC) $(CFLAGS) -o wav2gba wav2gba.c
     18 
     19 clean:
     20 	rm -f pcx2gba wav2gba *.o