Work on directory handling in save/load,

Mingw support for the config utility, with a larger font I made some time ago (I hoped the e' would work for Be'zier curves, but no)


git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@144 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Yves Rizoud
2008-09-14 00:11:55 +00:00
parent 37ca8d13aa
commit 77f3c5763e
5 changed files with 21 additions and 8 deletions

View File

@@ -1,11 +1,16 @@
ifdef COMSPEC
COPT = -Wall -O -g -ggdb -Dmain=SDL_main
LOPT = `sdl-config --libs` -lSDL_image -g
else
COPT = -c `sdl-config --cflags` -Wall -g
LOPT = `sdl-config --libs` -lSDL_image -lSDL_gfx -g
endif
gfxcfg: gfxcfg.o SFont.o
gcc gfxcfg.o SFont.o -o gfxcfg $(LOPT)
gfxcfg.o: gfxcfg.c SFont.h scancodes.h
gcc gfxcfg.c -o gfxcfg.o $(COPT)
gcc -c gfxcfg.c -o gfxcfg.o $(COPT)
SFont.o: SFont.h SFont.c
gcc SFont.c -o SFont.o $(COPT)
gcc -c SFont.c -o SFont.o $(COPT)