diff options
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 23 |
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) - |