From 8ae6621524ce4f849deab2c0b9f66b0895523487 Mon Sep 17 00:00:00 2001 From: cignoni Date: Fri, 16 Sep 2005 14:26:33 +0000 Subject: [PATCH] added optimization --- apps/gcc_make/metro/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 apps/gcc_make/metro/Makefile diff --git a/apps/gcc_make/metro/Makefile b/apps/gcc_make/metro/Makefile new file mode 100644 index 00000000..0f4a7e1e --- /dev/null +++ b/apps/gcc_make/metro/Makefile @@ -0,0 +1,13 @@ +CC = g++ +CFLAGS = -Wall -pedantic +DEFINED = __GNUC +ROOT=../../../.. + + +app: plylib.o $(ROOT)/apps/metro/metro.cpp + $(CC) $(CFLAGS) -D$(DEFINED) -I$(ROOT) -o metro $(ROOT)/apps/metro/metro.cpp plylib.o + +plylib.o: $(ROOT)/wrap/ply/plylib.cpp + $(CC) -c -D$(DEFINED) -I$(ROOT) $(ROOT)/wrap/ply/plylib.cpp + +