From 51e21a316be6e052251b3dfc7d671061ebd67cee Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 21 Dec 2009 18:03:28 +0000 Subject: Removed the old trunk contents. About to load up m3 --- Makefile.slim | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 Makefile.slim (limited to 'Makefile.slim') diff --git a/Makefile.slim b/Makefile.slim deleted file mode 100644 index d12435f..0000000 --- a/Makefile.slim +++ /dev/null @@ -1,24 +0,0 @@ -SRC:=$(sort $(wildcard src/*.cpp) $(wildcard src/bu/*.cpp)) -OBJ:=src/build.yy.o src/build.tab.o $(patsubst %.cpp,%.o,$(SRC)) - -.PHONY: all clean - -all: build - -clean: - -rm -Rf build $(OBJ) - -build: src/build.yy.c src/build.tab.c $(OBJ) - g++ -ggdb -ldl -o build $(OBJ) - -%.o: %.cpp - g++ -ggdb -Isrc -c -o $@ $< - -%.o: %.c - g++ -ggdb -Isrc -c -o $@ $< - -%.yy.c: %.l - flex --bison-bridge --bison-locations -o $@ $< - -%.tab.c: %.y - bison -v -b$(patsubst %.tab.c,%,$@) $< -- cgit v1.2.3