mirror of
https://github.com/cc65/cc65.git
synced 2025-01-12 02:30:44 +00:00
Added support for building the MS VS solution from the Makefile.
This commit is contained in:
parent
b6ebf71446
commit
a8aeab5d57
19
src/Makefile
19
src/Makefile
@ -1,3 +1,5 @@
|
||||
ifeq ($(shell echo),)
|
||||
|
||||
PROGS = ar65 \
|
||||
ca65 \
|
||||
cc65 \
|
||||
@ -100,3 +102,20 @@ $(eval $(call OBJS_template,common))
|
||||
$(foreach prog,$(PROGS),$(eval $(call PROG_template,$(prog))))
|
||||
|
||||
-include $(DEPS)
|
||||
|
||||
else # cmd.exe
|
||||
|
||||
.SUFFIXES:
|
||||
|
||||
.PHONY: all mostlyclean clean
|
||||
|
||||
all:
|
||||
msbuild cc65.sln /p:configuration=release /consoleloggerparameters:disableconsolecolor
|
||||
|
||||
mostlyclean:
|
||||
$(if $(wildcard ../wrk),rmdir /s /q ..\wrk)
|
||||
|
||||
clean:
|
||||
msbuild cc65.sln /p:configuration=release /consoleloggerparameters:disableconsolecolor /target:$@
|
||||
|
||||
endif # cmd.exe
|
||||
|
Loading…
x
Reference in New Issue
Block a user