diff level1/d64/cmds/makefile @ 3293:aa5c87cbbd32

level1 makefiles: Separate basic09 module lists The BASIC09FILES define was no more in use, however, separating out the basic09 modules (originally from 3rdparty) makes sense. The separate SUBS define was less obvious. The resulting disk images have been tested to be the same, except for d64 and dalpha images where they got more consistent.
author Tormod Volden <debian.tormod@gmail.com>
date Thu, 23 Sep 2021 23:23:35 +0200
parents a418110ecb44
children
line wrap: on
line diff
--- a/level1/d64/cmds/makefile	Thu Sep 23 22:58:22 2021 +0200
+++ b/level1/d64/cmds/makefile	Thu Sep 23 23:23:35 2021 +0200
@@ -7,22 +7,12 @@
 
 DEPENDS		= ./makefile
 
-BASIC09FILES	= runb.asm gfx.asm inkey.asm syscall.asm
-
-CMDS		= asm attr backup binex build cmp cobbler copy cputype \
+CMDS		= asm attr backup binex build cmp cobbler cobbler_dragon copy cputype \
 		date dcheck debug ded deiniz del deldir devs dir dirsort disasm \
 		display dmode dsave dump echo edit error exbin format \
 		free grfdrv help ident iniz irqs link list load login makdir \
-		megaread mdir merge mfree mpi os9gen padrom park printerr procs prompt pwd pxd \
-		rename runb save setime shellplus shell_21 sleep \
-		tee tmode touch tsmon tuneport unlink verify xmode minted
-
-DRAGONCMDS	= asm attr backup binex build cmp cobbler_dragon copy cputype \
-		date dcheck debug ded deiniz del deldir devs dir dirsort disasm \
-		display dmode dsave dump echo edit error exbin format \
-		free grfdrv help ident iniz irqs link list load login makdir \
-		megaread mdir merge mfree mpi os9gen padrom park printerr procs prompt pwd pxd \
-		rename runb save setime shellplus shell_21 sleep \
+		megaread mdir merge mfree minted mpi os9gen padrom park printerr procs prompt pwd pxd \
+		rename save setime shellplus shell_21 sleep \
 		tee tmode touch tsmon tuneport unlink verify xmode
 
 DRAGON525CMDS	= asm attr backup binex build cmp cobbler_dragon copy date del deldir \
@@ -32,17 +22,14 @@
 
 DRAGON525CMDS2	= cputype dcheck debug ded deiniz devs dirsort disasm edit error \
 		grfdrv help iniz irqs megaread mpi padrom park prompt \
-		runb shellplus touch tuneport 
-
+		shellplus touch tuneport
 
-SUBS		= gfx inkey syscall
-ALLOBJS		= $(CMDS) $(DRAGONCMDS) $(SUBS)
+BASIC09		= runb gfx inkey syscall
+
+ALLOBJS		= $(CMDS) $(BASIC09)
 
 all:	$(ALLOBJS)
 
-alldragon: $(DRAGONCMDS) $(SUBS)
-
-
 pwd:	pd.asm
 	$(AS) $(AFLAGS) $< $(ASOUT)$@ -DPWD=1
 
@@ -64,17 +51,11 @@
 identify:
 	$(IDENT_SHORT) $(ALLOBJS)
 
-showallobjs:
-	@$(ECHO) $(ALLOBJS)
-
-showcocoobjs:
-	@$(ECHO) $(CMDS) $(SUBS)
-
 showdragonobjs:
-	@$(ECHO) $(sort $(CMDS) $(DRAGONCMDS))
+	@$(ECHO) $(CMDS) $(BASIC09)
 
 showdragon525objs:
-	@$(ECHO) $(DRAGON525CMDS) $(SUBS)
+	@$(ECHO) $(DRAGON525CMDS) $(BASIC09)
 
 showdragon525objs2:
 	@$(ECHO) $(DRAGON525CMDS2)