diff --git a/asminc/module.mac b/asminc/module.mac new file mode 100644 index 000000000..d844ec104 --- /dev/null +++ b/asminc/module.mac @@ -0,0 +1,13 @@ +.ifndef DYN_DRV + DYN_DRV = 1 +.endif + +.macro module_header module_label + .if DYN_DRV + .segment "HEADER" + .else + .data + .export module_label + module_label: + .endif +.endmacro diff --git a/doc/ca65.sgml b/doc/ca65.sgml index b222b4aac..32cf0b80b 100644 --- a/doc/ca65.sgml +++ b/doc/ca65.sgml @@ -4321,16 +4321,14 @@ The package defines the following macros: .MACPACK atari

-The atari macro package will define a macro named .MACPACK cbm

-The cbm macro package will define a macro named .MACPACK cpu

@@ -4386,6 +4384,13 @@ it is possible to determine if the instruction is supported, which is the case for the 65SC02, 65C02 and 65816 CPUs (the latter two are upwards compatible to the 65SC02). + +.MACPACK module

+ +This macro package defines a macro named Predefined constants

diff --git a/libsrc/Makefile b/libsrc/Makefile index 75e5c3681..6a801695a 100644 --- a/libsrc/Makefile +++ b/libsrc/Makefile @@ -207,38 +207,39 @@ endif define DRVTYPE_template $1_SRCDIR = $$(SRCDIR)/$1 -$1_OBJDIR = ../libwrk/$$(TARGET)/$1 +$1_STCDIR = ../libwrk/$$(TARGET) +$1_DYNDIR = ../libwrk/$$(TARGET)/$1 $1_DRVDIR = ../$1 -$1_OBJPAT = $$($1_OBJDIR)/$$(OBJPFX)%.o +$1_SRCPAT = $$($1_SRCDIR)/$$(OBJPFX)%.s +$1_STCPAT = $$($1_STCDIR)/$$(OBJPFX)%-$1.o +$1_DYNPAT = $$($1_DYNDIR)/$$(OBJPFX)%.o $1_DRVPAT = $$($1_DRVDIR)/$$(DRVPFX)%.$1 -$1_STCPAT = ../libwrk/$$(TARGET)/$$(DRVPFX)%-$1.o -$1_OBJS := $$(patsubst $$($1_SRCDIR)/%.s,$$($1_OBJDIR)/%.o,$$(wildcard $$($1_SRCDIR)/*.s)) +$1_SRCS := $$(wildcard $$($1_SRCDIR)/*.s) +$1_STCS = $$(patsubst $$($1_SRCPAT),$$($1_STCPAT),$$($1_SRCS)) +$1_DYNS = $$(patsubst $$($1_SRCPAT),$$($1_DYNPAT),$$($1_SRCS)) +$1_DRVS = $$(patsubst $$($1_DYNPAT),$$($1_DRVPAT),$$($1_DYNS)) -$1_DRVS = $$(patsubst $$($1_OBJPAT),$$($1_DRVPAT),$$($1_OBJS)) +$$($1_STCPAT): $$($1_SRCPAT) + @echo $$(TARGET) - $$< - static + @$$(CA65) -t $$(TARGET) -D DYN_DRV=0 $$(CA65FLAGS) --create-dep $$(@:.o=.d) -o $$@ $$< -$1_STCS = $$(patsubst $$($1_DRVPAT),$$($1_STCPAT),$$($1_DRVS)) +OBJS += $$($1_STCS) +DEPS += $$($1_STCS:.o=.d) -$$($1_OBJS): | $$($1_OBJDIR) +$$($1_DYNS): | $$($1_DYNDIR) -$$($1_DRVPAT): $$($1_OBJPAT) $$(ZPOBJ) | $$($1_DRVDIR) +$$($1_DRVPAT): $$($1_DYNPAT) $$(ZPOBJ) | $$($1_DRVDIR) @echo $$(TARGET) - $$(