X-Git-Url: http://gitweb.hachti.de/?a=blobdiff_plain;f=systems%2FMakefile;h=771d21b624bb8cd3fa5fc52280cf19583b90d209;hb=b30bf85c9301650f06b0dc31a440a5b944011643;hp=3caf770cffe8ed05efc13dc4ca6b027abfb6bb10;hpb=fa105a9b1957e54e3a63fdcda359fd0abc453a44;p=h316.git diff --git a/systems/Makefile b/systems/Makefile index 3caf770..771d21b 100644 --- a/systems/Makefile +++ b/systems/Makefile @@ -1,10 +1,15 @@ # Makefile for system generation # Targets -export SUPER3_SYS=super3.sys export SUPER2_SYS=super2.sys -export SUPER3_SLST=super3.slst export SUPER2_SLST=super2.slst + +export SUPER3_SYS=super3.sys +export SUPER3_SLST=super3.slst + +export SUPER3_8K_SYS=super3_8k.sys +export SUPER3_8K_SLST=super3_8k.slst + export DAP_SYS=dap.sys export DAP_SLST=dap.slst export SUPER_SIMPLE_SYS=super_simple.sys @@ -29,10 +34,12 @@ export SUPER_SYS_FOR_DAP=$(SUPER_SIMPLE_SYS) export MAKE -all: super3 super2 dap +all: super3 super2 super3_8k dap super2: $(SUPER2_SLST) super3: $(SUPER3_SLST) +super3_8k: $(SUPER3_8K_SLST) + dap: $(DAP_SLST) $(SUPER_SIMPLE_SYS): $(LDR_APM_8K) $(PAL_AP) $(LDR_APM) $(LDR_DUMY) @@ -50,8 +57,14 @@ $(SUPER3_SLST) $(SUPER3_SYS): $(LDR_APM_8K) $(LDR_APM) $(LDR_DUMY) $(PRNTNZ)\ $(CLEANUP2) $(BINAL) $(RESTART) ./build_super3.sh +$(SUPER3_8K_SLST) $(SUPER3_8K_SYS): $(LDR_APM_8K) $(LDR_APM) $(LDR_DUMY) $(PRNTNZ)\ + $(CLEANUP2) $(BINAL) $(RESTART) + ./build_super3_8k.sh + clean: - @rm -f $(SUPER2_SLST) $(SUPER2_SYS) $(SUPER3_SLST) $(SUPER3_SYS) $(DAP_SYS) $(DAP_SLST)\ - $(SUPER_SIMPLE_SYS) + @rm -f $(SUPER2_SLST) $(SUPER2_SYS) $(SUPER3_SLST) $(SUPER3_8K_SLST)\ + $(SUPER3_SYS) $(DAP_SYS) $(DAP_SLST)\ + $(SUPER_SIMPLE_SYS) $(SUPER3_8K_SYS) + +.PHONY: super3 super2 super3_8k super_simple -.PHONY: super3 \ No newline at end of file