Skip to content
Snippets Groups Projects
Commit cd4f66b8 authored by rswindell's avatar rswindell
Browse files

Optimized sbjclean build a bit (not multithreaded).

parent 8e243e70
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@
CC = bcc32
LD = ilink32
XSDK = ..\sdk
CFLAGS = -WM -I$(XSDK)
CFLAGS = -I$(XSDK)
CFLAGS = $(CFLAGS) -q -d -H -X- -w-csu -w-pch -w-ccc -w-rch -w-par -w-8004
OBJS = xsdk.obj xsdkvars.obj xsdkwrap.obj
......@@ -20,17 +20,17 @@ OBJS = xsdk.obj xsdkvars.obj xsdkwrap.obj
# Implicit C Compile Rule
.c.obj:
@$(CC) $(CFLAGS) -c $<
@$(CC) $(CFLAGS) -WM -c $<
all: sbj.exe sbjclean.exe
# Main EXE Link Rule
sbj.exe: $(OBJS) sbj.obj
@echo Linking $@
@$(CC) $(CFLAGS) -e$@ $**
@$(CC) $(CFLAGS) -WM -e$@ $**
# Main EXE Link Rule
sbjclean.exe: $(OBJS) sbjclean.obj
sbjclean.exe: xsdkwrap.obj sbjclean.obj
@echo Linking $@
@$(CC) $(CFLAGS) -e$@ $**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment