diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2011-10-14 03:17:19 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2011-10-14 03:17:19 +0200 |
commit | b57628e6519b5a031bbba970c70fb8c2ac204640 (patch) | |
tree | f06acd567dde5dcdb05bc729577c0f9137d994bb /include.mk.in | |
parent | 3086c6ce36ddb10246e50d3a093879877b398ba1 (diff) | |
download | erlang-slang-fork-b57628e6519b5a031bbba970c70fb8c2ac204640.tar.gz |
replaced half autoconf build system with a simpler GNU make and Emake based one
new build system adheres to common usage of make command line and
environment variables
Diffstat (limited to 'include.mk.in')
-rw-r--r-- | include.mk.in | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/include.mk.in b/include.mk.in deleted file mode 100644 index 6d08a9d..0000000 --- a/include.mk.in +++ /dev/null @@ -1,15 +0,0 @@ - -CC=gcc -ERLDIR=@ERLDIR@ -SLANG_INCLUDE=@SLANG_INCLUDE@ -LD_SHARED=@LD_SHARED@ - -ERLC = erlc -ERLC_FLAGS+=-W $(DEBUG_FLAGS) - -../ebin/%.beam: %.erl - $(ERLC) -b beam $(ERLC_FLAGS) -o ../ebin $< - -%.beam: %.erl - $(ERLC) -b beam $(ERLC_FLAGS) $< - |