From cbaab7093c43d1bc208c446367483f386dcb6bf5 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Wed, 16 Jun 2010 11:54:01 -0700 Subject: Add glcpp to the build. --- glcpp/Makefile | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 glcpp/Makefile (limited to 'glcpp/Makefile') diff --git a/glcpp/Makefile b/glcpp/Makefile deleted file mode 100644 index 1578a8ee30..0000000000 --- a/glcpp/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# Debug symbols by default, but let the user avoid that with something -# like "make CFLAGS=-O2" -CFLAGS = -g - -# But we use 'override' here so that "make CFLAGS=-O2" will still have -# all the warnings enabled. -override CFLAGS += -Wall -Wextra -Wwrite-strings -Wswitch-enum -Wno-unused - -glcpp: glcpp.o glcpp-lex.o glcpp-parse.o hash_table.o xtalloc.o - gcc -o $@ -ltalloc -lm $^ - -%.c %.h: %.y - bison --debug --defines=$*.h --output=$*.c $^ - -%.c: %.l - flex --outfile=$@ $< - -glcpp-lex.c: glcpp-parse.h - -test: glcpp - @(cd tests; ./glcpp-test) - -clean: - rm -f glcpp glcpp-lex.c glcpp-parse.c *.o *~ - rm -f tests/*.out tests/*~ -- cgit v1.2.3