diff options
author | Derick Huth <derickhuth@gmail.com> | 2015-03-23 13:48:02 -0600 |
---|---|---|
committer | Derick Huth <derickhuth@gmail.com> | 2015-03-23 13:48:02 -0600 |
commit | e6b89c668036ff8424455d3d1d1a5d79a063fc92 (patch) | |
tree | e185ac16a4af9df7d29d189dde7ef3b8bd6c19e1 /omega/omega_calc/obj/Makefile | |
parent | 4d46b92b3030a4d38d7e09274f0463bbcb94694e (diff) | |
parent | 7e39433ddb5f3ac5298207d5f4e8072eb193fa7a (diff) | |
download | chill-e6b89c668036ff8424455d3d1d1a5d79a063fc92.tar.gz chill-e6b89c668036ff8424455d3d1d1a5d79a063fc92.tar.bz2 chill-e6b89c668036ff8424455d3d1d1a5d79a063fc92.zip |
Merge pull request #5 from dhuth/master
Autotools Features
Diffstat (limited to 'omega/omega_calc/obj/Makefile')
-rw-r--r-- | omega/omega_calc/obj/Makefile | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/omega/omega_calc/obj/Makefile b/omega/omega_calc/obj/Makefile deleted file mode 100644 index 4001c83..0000000 --- a/omega/omega_calc/obj/Makefile +++ /dev/null @@ -1,57 +0,0 @@ -# Makefile for release 1.0 of the omega system -# DON'T EDIT -- put any locally required changes in Makefile.config. -# See INSTALL for more details. - -EXEC_TARGET=oc - - -all: $(EXEC_TARGET) - -clean: clean_self - -veryclean: veryclean_self - - -SRCS := ../src/AST.cc ../src/myflex.cc -OBJS := $(SRCS:../src/%.cc=%.o) - -YACC_SRCS := lex.yy.cc parser.tab.cc -YACC_OBJS := $(YACC_SRCS:.cc=.o) - -depend: $(YACC_SRCS) depend_self - -SRCS := $(SRCS) $(YACC_SRCS) -OBJS := $(OBJS) $(YACC_OBJS) - -BASEDIR=../.. -include $(BASEDIR)/Makefile.config - -LIB_PATH := $(LIB_PATH) -L../../omega_lib/obj -LIBS := $(LIBS) -lomega - -ifeq ($(BUILD_CODEGEN), true) -LIB_PATH := $(LIB_PATH) -L../../code_gen/obj -LIBS := $(LIBS) -lcodegen -CFLAGS := $(CFLAGS) -DBUILD_CODEGEN -endif - -CFLAGS := $(CFLAGS) -INCL_PATH := -I. $(INCL_PATH) -I../../omega_lib/include -I../../code_gen/include - -include $(BASEDIR)/Makefile.rules - -# lex/yacc related -.PHONY: parser.tab.o - -lex.yy.cc: ../src/parser.ll - flex++ $< - -parser.tab.hh parser.tab.cc: ../src/parser.yy - bison -t -d $< - -parser.tab.o: parser.tab.cc - $(CC) $(CFLAGS) -DOMEGA_BUILD_DATE="\"$(OMEGA_BUILD_DATE)\"" $(INCL_PATH) -c $< - -ifeq ($(shell test -f Makefile.deps && echo "true"), true) -include Makefile.deps -endif |