diff --git a/apps/gcc_make/apps/metro/Makefile b/apps/gcc_make/apps/metro/Makefile deleted file mode 100644 index 10abc1c3..00000000 --- a/apps/gcc_make/apps/metro/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -CC = g++ -CFLAGS = -Wall -pedantic -O3 -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 - - diff --git a/apps/gcc_make/apps/tri_decimator/Makefile b/apps/gcc_make/apps/tri_decimator/Makefile deleted file mode 100644 index b269c22a..00000000 --- a/apps/gcc_make/apps/tri_decimator/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -CC = g++ -CFLAGS = -Wall -pedantic -DEFINED = __GNUC -ROOT=../../../.. - - -app: plylib.o $(ROOT)/apps/tri_decimator/main.cpp - $(CC) $(CFLAGS) -D$(DEFINED) -I$(ROOT) -o tri_decimator $(ROOT)/apps/tri_decimator/main.cpp plylib.o - -plylib.o: $(ROOT)/wrap/ply/plylib.cpp - $(CC) -c -D$(DEFINED) -I$(ROOT) $(ROOT)/wrap/ply/plylib.cpp - -