diff options
-rw-r--r-- | eshtrans/Makefile | 6 | ||||
-rw-r--r-- | eshtrans/Makefile.old | 28 |
2 files changed, 30 insertions, 4 deletions
diff --git a/eshtrans/Makefile b/eshtrans/Makefile index 7dbd280..5a093b6 100644 --- a/eshtrans/Makefile +++ b/eshtrans/Makefile @@ -18,11 +18,9 @@ clean: rm -f eshtrans $(OBJECTS) eshtrans: $(OBJECTS) Makefile - cat $(OBJECTS) >$@ - printf 'main "$${@}"\n' >>$@ - chmod a+x $@ + ../eshld/eshld -o $@ $(OBJECTS) $(OBJECTS): Makefile .esh.sh: - cp $< $@ + ./eshtrans $< diff --git a/eshtrans/Makefile.old b/eshtrans/Makefile.old new file mode 100644 index 0000000..b47c4a7 --- /dev/null +++ b/eshtrans/Makefile.old @@ -0,0 +1,28 @@ +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 $< $@ |