diff options
author | dhuth <derickhuth@gmail.com> | 2015-01-30 14:52:48 -0700 |
---|---|---|
committer | dhuth <derickhuth@gmail.com> | 2015-01-30 14:52:48 -0700 |
commit | 7e39433ddb5f3ac5298207d5f4e8072eb193fa7a (patch) | |
tree | e185ac16a4af9df7d29d189dde7ef3b8bd6c19e1 /omega/code_gen/obj/Makefile | |
parent | f9ec04bd879eccdb9e581cbedc1cec1cba83a5fb (diff) | |
download | chill-7e39433ddb5f3ac5298207d5f4e8072eb193fa7a.tar.gz chill-7e39433ddb5f3ac5298207d5f4e8072eb193fa7a.tar.bz2 chill-7e39433ddb5f3ac5298207d5f4e8072eb193fa7a.zip |
Added libtools support
Diffstat (limited to 'omega/code_gen/obj/Makefile')
-rw-r--r-- | omega/code_gen/obj/Makefile | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/omega/code_gen/obj/Makefile b/omega/code_gen/obj/Makefile deleted file mode 100644 index dbc65fe..0000000 --- a/omega/code_gen/obj/Makefile +++ /dev/null @@ -1,49 +0,0 @@ - -# DON'T EDIT -- put any locally required changes in Makefile.config. - - -LIB_TARGET=libcodegen.a - -all: $(LIB_TARGET) -depend: depend_self -clean: clean_self -veryclean: veryclean_self - -BASIC_SRC = ../src/codegen.cc ../src/CG_stringBuilder.cc ../src/CG.cc ../src/CG_utils.cc -BASIC_OBJ = $(BASIC_SRC:../src/%.cc=%.o) - - -ROSE_SRC = ../src/rose_attributes.cc ../src/CG_roseRepr.cc ../src/CG_roseBuilder.cc -ROSE_OBJ = $(ROSE_SRC:../src/%.cc=%.o) - -OBJS = ${BASIC_OBJ} -SRCS = ${BASIC_SRC} - -BASEDIR=../.. -include $(BASEDIR)/Makefile.config - -INCL_PATH := $(INCL_PATH) -I../../omega_lib/include - - - - -ifeq ($(BUILD_ROSE), true) -OBJS := $(OBJS) $(ROSE_OBJ) -SRCS := $(SRCS) $(ROSE_SRC) -INCL_PATH := $(INCL_PATH) -I${ROSEHOME}/include -I${BOOSTHOME}/include -endif - -ifeq ($(BUILD_ROSE), true) -IR_OBJ = $(ROSE_SRC:../src/%.cc=%.o) -endif - -include $(BASEDIR)/Makefile.rules - - -# suppress warning of constant char * conversion nuiance in suif -$(IR_OBJ): %.o: ../src/%.cc - $(CC) -Wno-write-strings $(CFLAGS) $(INCL_PATH) -c $< -o $@ - -ifeq ($(shell test -f Makefile.deps && echo "true"), true) -include Makefile.deps -endif |