diff options
author | Pedro de Medeiros <pedro.medeiros@gmail.com> | 2021-12-20 12:53:14 -0300 |
---|---|---|
committer | Pedro de Medeiros <pedro.medeiros@gmail.com> | 2021-12-20 12:53:14 -0300 |
commit | 2de0cd2e8660056bc424ea3214c86c78c50dedc1 (patch) | |
tree | 8b82c0e2d5c8167854242f6c2a43a9a4d45c5ff0 | |
parent | 25b8b7a23573ccaf0ca81bbb987a4baa3017dbd5 (diff) | |
download | ubox-msx-lib-2de0cd2e8660056bc424ea3214c86c78c50dedc1.tar.gz ubox-msx-lib-2de0cd2e8660056bc424ea3214c86c78c50dedc1.zip |
Makefile in spman.lib now cleans up completely
-rw-r--r-- | src/spman/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/spman/Makefile b/src/spman/Makefile index 690e72f..68c19ff 100644 --- a/src/spman/Makefile +++ b/src/spman/Makefile @@ -9,7 +9,7 @@ CFLAGS := -mz80 --Werror -I../../include --fsigned-char --std-sdcc99 --opt-code- SOURCES := $(wildcard *.c) OBJS := $(patsubst %.c,%.rel,$(SOURCES)) - +EXTS := $(patsubst %.c,%.asm,$(SOURCES)) $(patsubst %.c,%.lst,$(SOURCES)) $(patsubst %.c,%.sym,$(SOURCES)) $(LIB): $(OBJS) $(AR) -rcD $(LIB) $(OBJS) @@ -18,5 +18,5 @@ $(LIB): $(OBJS) .PHONY: clean clean: - rm -f $(OBJS) $(LIB) + rm -f $(EXTS) $(OBJS) $(LIB) |