diff options
author | Juan J. Martinez <jjm@usebox.net> | 2021-01-25 15:57:10 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2021-01-25 15:57:10 +0000 |
commit | f2e34f162af326aace8ca6d9d0ca26e1159b3706 (patch) | |
tree | afcea0dee7cba7ec9d514fa56c6107b35af28dde /src/ubox/Makefile | |
parent | 6b884b930a9e1b7016f4e1a8967466cb9536ce45 (diff) | |
download | ubox-msx-lib-f2e34f162af326aace8ca6d9d0ca26e1159b3706.tar.gz ubox-msx-lib-f2e34f162af326aace8ca6d9d0ca26e1159b3706.zip |
Reviewed makefiles
Diffstat (limited to 'src/ubox/Makefile')
-rw-r--r-- | src/ubox/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ubox/Makefile b/src/ubox/Makefile index a597090..1d8e27e 100644 --- a/src/ubox/Makefile +++ b/src/ubox/Makefile @@ -1,11 +1,11 @@ -LIB=../../lib/ubox.lib +LIB := ../../lib/ubox.lib all: $(LIB) -AS=sdasz80 -AR=sdar +AS := sdasz80 +AR := sdar -SOURCES=$(wildcard ubox_*.z80) -OBJS=$(patsubst %.z80,%.rel,$(SOURCES)) +SOURCES := $(wildcard ubox_*.z80) +OBJS := $(patsubst %.z80,%.rel,$(SOURCES)) $(LIB): $(OBJS) $(AR) -rcD $(LIB) $(OBJS) |