diff options
author | pixel <pixel> | 2003-06-20 14:08:16 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-06-20 14:08:16 +0000 |
commit | 30f218eb43414407ff8fad136ac1b14d419c29b5 (patch) | |
tree | 1e4c1dd71272f861daf90baced75fa604cdbf168 /ToD | |
parent | 7fc9c6dfbef57331c8b5eae0943f3fe95f2e63e1 (diff) |
Compiling again
Diffstat (limited to 'ToD')
-rwxr-xr-x | ToD/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ToD/Makefile b/ToD/Makefile index fafd7ac..5a0edcd 100755 --- a/ToD/Makefile +++ b/ToD/Makefile @@ -1,16 +1,16 @@ #!/usr/bin/make -f -CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -pedantic-errors -Werror -I../includes +CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -pedantic-errors -Werror -I../includes `baltisot-config --cflags` CXX=g++ LIBS=-lz -LDFLAGS=${LIBS} +LDFLAGS=${LIBS} `baltisot-config --libs` TARGET = c_dumper all: ${TARGET} -c_dumper: c_dumper.o ../includes/generic.h Makefile - ${CXX} ${LDFLAGS} c_dumper.o ../generic/generic.a -o c_dumper +c_dumper: c_dumper.o Makefile + ${CXX} ${LDFLAGS} c_dumper.o -o c_dumper clean: rm -f *.o ${TARGET} compil.c |