diff options
| author | Beoran <[email protected]> | 2012-05-01 20:13:09 +0200 |
|---|---|---|
| committer | Jon <[email protected]> | 2012-05-22 09:11:13 -0400 |
| commit | b5dcb7128d7d235b66b4d9be879d26364dd1e3e9 (patch) | |
| tree | c58c7ccfa87d4cdd9c9f8a503356f5e2d142ea16 /src/Makefile | |
| parent | abacbf667241ff4919b14007ef1a704f321de96d (diff) | |
| download | mruby-b5dcb7128d7d235b66b4d9be879d26364dd1e3e9.tar.gz mruby-b5dcb7128d7d235b66b4d9be879d26364dd1e3e9.zip | |
First cmake build system. Works on Linux.
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/src/Makefile b/src/Makefile deleted file mode 100644 index 14485041d..000000000 --- a/src/Makefile +++ /dev/null @@ -1,64 +0,0 @@ -# makefile discription. -# basic build file for mruby library - -# project-specific macros -# extension of the executable-file is modifiable(.exe .out ...) -BASEDIR = . -TARGET := ../lib/libmruby_core.a -YSRC := $(BASEDIR)/parse.y -YC := $(BASEDIR)/y.tab.c -EXCEPT1 := $(YC) $(BASEDIR)/minimain.c -OBJY := $(patsubst %.c,%.o,$(YC)) -OBJ1 := $(patsubst %.c,%.o,$(filter-out $(EXCEPT1),$(wildcard $(BASEDIR)/*.c))) -#OBJ2 := $(patsubst %.c,%.o,$(wildcard $(BASEDIR)/ext/regex/*.c)) -#OBJ3 := $(patsubst %.c,%.o,$(wildcard $(BASEDIR)/ext/enc/*.c)) -OBJS := $(OBJ1) $(OBJ2) $(OBJ3) - -# libraries, includes -INCLUDES = -I$(BASEDIR) -I$(BASEDIR)/../include - -# compiler, linker (gcc) -CC = gcc -LL = gcc -AR = ar -YACC = bison - -DEBUG_MODE = 1 -ifeq ($(DEBUG_MODE),1) -CFLAGS = -g -O3 -else -CFLAGS = -O3 -endif -ALL_CFLAGS = -Wall -Werror-implicit-function-declaration $(CFLAGS) - -############################## -# generic build targets, rules - -.PHONY : all -all : $(TARGET) - -# executable constructed using linker from object files -$(TARGET) : $(OBJS) $(OBJY) - $(AR) r $@ $(OBJS) $(OBJY) - --include $(OBJS:.o=.d) $(OBJY:.o=.d) - -# objects compiled from source -$(OBJS) : %.o : %.c - $(CC) $(ALL_CFLAGS) -MMD $(INCLUDES) -c $< -o $@ - -# parser complie -$(OBJY) : $(YC) - $(CC) $(ALL_CFLAGS) -MMD $(INCLUDES) -c $(YC) -o $(OBJY) - -# yacc complie -$(YC) : $(YSRC) - $(YACC) -o $(YC) $(YSRC) - -# clean up -.PHONY : clean #cleandep -clean : - @echo "make: removing targets, objects and depend files of `pwd`" - -rm -f $(TARGET) $(OBJS) $(OBJY) $(YC) - -rm -f $(OBJS:.o=.d) $(OBJY:.o=.d) - -rm -f $(patsubst %.c,%.o,$(EXCEPT1)) $(patsubst %.c,%.d,$(EXCEPT1)) |
