X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=GNUmakefile;h=65e3d470849cb9c4aa5b9047d64bc059b5aa2c09;hb=7b3c578d22e5eebc4d048655da7bc711662e2179;hp=6bc3c6908b1defb7efa856aff87fe3f7d3c35914;hpb=a77883f4cefd1af3d71588871ef27e81a49194d8;p=eradicate diff --git a/GNUmakefile b/GNUmakefile index 6bc3c69..65e3d47 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,10 +1,10 @@ -csrc = $(wildcard src/*.c) $(wildcard src/sdl/*.c) +csrc = $(wildcard src/*.c) $(wildcard src/sdl/*.c) $(wildcard src/3dgfx/*.c) obj = $(csrc:.c=.o) dep = $(obj:.o=.d) bin = game -inc = -Isrc -Isrc/sdl +inc = -Isrc -Isrc/sdl -Isrc/3dgfx -Ilibs/imago/src CFLAGS = $(arch) -pedantic -Wall -g -MMD $(inc) `sdl-config --cflags` LDFLAGS = $(arch) -Llibs/imago -limago `sdl-config --libs` -lm