aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Makefile
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2011-10-14 05:45:42 +0200
committerFelix Lange <fjl@twurst.com>2011-10-14 05:45:42 +0200
commitbd5145368593e09460d4461256ee4f934b2ebf26 (patch)
tree471852782d61d64bede27d67552eb79af0a598aa /src/Makefile
parent90640c1aed302fd83a500bb9ccdfb6cf7b481112 (diff)
downloadermacs-fork-bd5145368593e09460d4461256ee4f934b2ebf26.tar.gz
remove cruft
cruft includes: - module header comments (yikes..) - author attributes (sorry luke) - old guard tests
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/Makefile b/src/Makefile
deleted file mode 100644
index 087f2a9..0000000
--- a/src/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-include ../../../support/include.mk
-
-ERLC_FLAGS += -I ../.. -pa ../ebin/
-
-SCRIPT=../bin/ermacs
-SED_EXPR = s:%BASEDIR%:`pwd`/..:
-
-all: $(ERL_OBJECTS) $(SCRIPT)
-
-# edit_transform has to be built first. This rule is actually
-# circular, but that seems okay with GNU make.
-$(ERL_OBJECTS): ../ebin/edit_transform.beam
-
-$(SCRIPT): ermacs.in
- sed ${SED_EXPR} < $< > $@
- chmod +x $@
-
-clean:
- -rm -f $(ERL_OBJECTS)
- -rm -f ../bin/ermacs
-
-$(ERL_OBJECTS): $(ERL_HEADERS)
-