Rethinking the rethinking.

This commit is contained in:
2016-04-26 17:29:17 -07:00
parent 5a5902af6b
commit 079796ecc3
12 changed files with 119 additions and 0 deletions

9
src/Makefile Normal file
View File

@@ -0,0 +1,9 @@
CURDIR := $(TOPDIR)/hsrc
HSRC_FILES := Main
HSRC_FILES_PREFIXED := $(addprefix $(CURDIR)/,$(HSRC_FILES))
OBJECTS += $(addsuffix .o,$(HSRC_FILES_PREFIXED))
HS_SOURCES += $(addsuffix .hs,$(HSRC_FILES_PREFIXED))
include $(CURDIR)/Syntax/Makefile