grafX2/cfg_new/Makefile
Adrien Destugues 9667f8ab6d till working on the configuration tool
git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@128 416bcca6-2ee7-4201-b75f-2eb2f807beb1
2008-09-10 10:44:41 +00:00

12 lines
279 B
Makefile

COPT = -c `sdl-config --cflags` -Wall -g
LOPT = `sdl-config --libs` -lSDL_image -lSDL_gfx -g
gfxcfg: gfxcfg.o SFont.o
gcc gfxcfg.o SFont.o -o gfxcfg $(LOPT)
gfxcfg.o: gfxcfg.c SFont.h
gcc gfxcfg.c -o gfxcfg.o $(COPT)
SFont.o: SFont.h SFont.c
gcc SFont.c -o SFont.o $(COPT)