From 9911f9a73c7dc46069199e52f2bc54082d10366c Mon Sep 17 00:00:00 2001 From: Tom Smeding Date: Wed, 3 Jan 2018 23:10:59 +0100 Subject: Initial --- Makefile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e206eea --- /dev/null +++ b/Makefile @@ -0,0 +1,28 @@ +CC = gcc +LEX = flex +YAXX = bison + +CFLAGS = -Wall -Wextra -std=c11 -g -I. -D_GNU_SOURCE +LDFLAGS = -lfl + +TARGET = ccomp + +.PHONY: all clean + +all: $(TARGET) + +clean: + rm -f $(TARGET) *.o + rm -rf bison-out + + +bison-out/y.tab.c bison-out/y.tab.h: c.y + @mkdir -p bison-out + bison -d -b bison-out/y c.y + +bison-out/lex.yy.c: c.l + @mkdir -p bison-out + flex -o bison-out/lex.yy.c c.l + +$(TARGET): $(wildcard *.c) $(wildcard *.h) bison-out/y.tab.c bison-out/lex.yy.c + $(CC) $(CFLAGS) $(filter %.c,$^) $(LDFLAGS) -o $@ -- cgit v1.2.3-54-g00ecf