summaryrefslogtreecommitdiffstats
path: root/eshtrans/Makefile.old
diff options
context:
space:
mode:
Diffstat (limited to 'eshtrans/Makefile.old')
-rw-r--r--eshtrans/Makefile.old28
1 files changed, 0 insertions, 28 deletions
diff --git a/eshtrans/Makefile.old b/eshtrans/Makefile.old
deleted file mode 100644
index b47c4a7..0000000
--- a/eshtrans/Makefile.old
+++ /dev/null
@@ -1,28 +0,0 @@
-SOURCES = \
- main.esh \
- common.esh \
- tokens.esh \
- backend/main.esh \
- backend/codegen.esh \
- frontend/main.esh \
- frontend/parser.esh \
- frontend/lexer.esh
-OBJECTS = $(SOURCES:.esh=.sh)
-
-all: eshtrans.old
-
-.SUFFIXES:
-.SUFFIXES: .esh .sh
-
-clean:
- rm -f eshtrans.old $(OBJECTS)
-
-eshtrans.old: $(OBJECTS)
- cat $(OBJECTS) >$@
- printf 'main "$${@}"\n' >>$@
- chmod a+x $@
-
-$(OBJECTS):
-
-.esh.sh:
- cp $< $@