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 + +