summaryrefslogtreecommitdiffstats
path: root/sw/z80/drivers/makefile
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2017-11-09 13:17:35 +0100
committerNao Pross <naopross@thearcway.org>2017-11-09 13:17:35 +0100
commit3b2f2ea6c6fbfcb23ea9ab324c83d602d45a8820 (patch)
tree2362bfb36432e551f2f0025d4f12554bddc863c9 /sw/z80/drivers/makefile
parentUpdate gitignore and add sdcc manual (diff)
downloadz80uPC-3b2f2ea6c6fbfcb23ea9ab324c83d602d45a8820.tar.gz
z80uPC-3b2f2ea6c6fbfcb23ea9ab324c83d602d45a8820.zip
Update makefile, and bug fix in pio driver and usart
Diffstat (limited to '')
-rw-r--r--sw/z80/drivers/makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/sw/z80/drivers/makefile b/sw/z80/drivers/makefile
index 98f453a..65ded58 100644
--- a/sw/z80/drivers/makefile
+++ b/sw/z80/drivers/makefile
@@ -6,15 +6,17 @@ OBJECTS := $(patsubst %.c,build/%.rel,$(SOURCES))
CC := sdcc
AR := sdar
-CFLAGS := -mz80 -Iinclude -I../arch -DDEBUG
+CFLAGS := -mz80 -Iinclude -I../arch/include -DDEBUG
-.PHONY: dirs clean
+.PHONY: dirs rebuild clean
$(LIB): $(OBJECTS)
- $(AR) rcs $@ $(OBJECTS)
+ $(AR) vrcs $@ $(OBJECTS)
$(OBJECTS): build/%.rel: %.c $(SOURCES) dirs
$(CC) $(CFLAGS) -c $< -o $@
+rebuild: clean $(LIB)
+
dirs:
mkdir -p build