diff options
author | pixel <pixel> | 2003-09-24 14:21:58 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-09-24 14:21:58 +0000 |
commit | 82cd864169e0f3915927d8dcf46045a95d0a0365 (patch) | |
tree | f30f0de0accdc428954a856e0354c33dcc47ec05 /PE/Makefile | |
parent | c1727f55279122d155a639809cc021fc88005867 (diff) |
Grmf
Diffstat (limited to 'PE/Makefile')
-rw-r--r-- | PE/Makefile | 53 |
1 files changed, 26 insertions, 27 deletions
diff --git a/PE/Makefile b/PE/Makefile index d12149e..2d404ab 100644 --- a/PE/Makefile +++ b/PE/Makefile @@ -1,27 +1,26 @@ -#!/usr/bin/make -f
-
-CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -I../includes -DHAVE_ZLIB `baltisot-config --cflags`
-CXX=g++
-CC=gcc
-LEX=flex -l
-
-LIBS=-lz
-#-lefence
-LDFLAGS=${LIBS} `baltisot-config --libs`
-#`pkg-config --libs glib-2.0`
-
-TARGET = reinsert compil extract extract-various extract-rooms
-
-all: ${TARGET}
-
-reinsert: reinsert.o ../includes/cdutils.h ../includes/yazedc.h ../lib/lib.a Makefile
- ${CXX} ${LDFLAGS} reinsert.o ../lib/lib.a -o reinsert
-
-compil: compil.o
- ${CC} ${LDFLAGS} compil.o -o compil
-
-compil.c: compil.lex
- ${LEX} -ocompil.c compil.lex
-
-clean:
- rm -f *.o ${TARGET} compil.c
+#!/usr/bin/make -f + +CPPFLAGS=-Wall -g -O3 -mcpu=i686 -I../includes -DHAVE_ZLIB `baltisot-config --cflags` +CXX=g++ +CC=gcc +LEX=flex -l + +LIBS=-lz -lefence +LDFLAGS=${LIBS} `baltisot-config --libs` +#`pkg-config --libs glib-2.0` + +TARGET = reinsert compil extract extract-various extract-rooms + +all: ${TARGET} + +reinsert: reinsert.o ../includes/cdutils.h ../includes/yazedc.h ../lib/lib.a Makefile + ${CXX} ${LDFLAGS} reinsert.o ../lib/lib.a -o reinsert + +compil: compil.o + ${CC} ${LDFLAGS} compil.o -o compil + +compil.c: compil.lex + ${LEX} -ocompil.c compil.lex + +clean: + rm -f *.o ${TARGET} compil.c |