biblekaruta

Bible Karuta Game written in C with SDL2 as graphics back-end
Log | Files | Refs | README | LICENSE

Makefile (309B)


      1 # Bible Karuta Game - Makefile
      2 # M. Yamanaka
      3 # email: myamanaka@live.com
      4 # website: csmyamanaka.com
      5 # license: MIT (See included "LiCENSE" file for details)
      6 
      7 CC=gcc
      8 LFLG=-lSDL2
      9 FILES=main.c biblekaruta.c crosshair.c
     10 OUT=BibleKaruta
     11 
     12 all: $(OUT)
     13 
     14 $(OUT): $(FILES)
     15 	$(CC) $^ $(LFLG) -o $@
     16 
     17 clean:
     18 	rm -f $(OUT)

Generated using stagit (https://codemadness.org/stagit.html)