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 /src | |
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 'src')
-rw-r--r-- | src/Makefile | 23 | ||||
-rw-r--r-- | src/slang.app.src | 8 |
2 files changed, 0 insertions, 31 deletions
diff --git a/src/Makefile b/src/Makefile deleted file mode 100644 index dc7fa4b..0000000 --- a/src/Makefile +++ /dev/null @@ -1,23 +0,0 @@ - - - -ifeq ($(TYPE),debug) -DEBUG_FLAGS = -Ddebug -else -DEBUG_FLAGS = -endif - -include ../include.mk -include ../vsn.mk - -ERLC_FLAGS+=-W $(DEBUG_FLAGS) -MODULES = slang - -TARGETS = $(MODULES:%=../ebin/%.beam) ../ebin/slang.app - - -all debug: $(TARGETS) -clean: - rm -f $(TARGETS) -../ebin/slang.app: slang.app.src - cat slang.app.src | sed 's/%VSN%/${SLANG_VSN}/' > ../ebin/slang.app diff --git a/src/slang.app.src b/src/slang.app.src deleted file mode 100644 index c602303..0000000 --- a/src/slang.app.src +++ /dev/null @@ -1,8 +0,0 @@ -{application,slang, - [{description,"tty interface"}, - {vsn,"%VSN%"}, - {modules,[slang]}, - {registered,[]}, - {env,[]}, - {applications,[kernel,stdlib]}]}. - |