1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00

Added support for building the MS VS solution from the Makefile.

This commit is contained in:
Oliver Schmidt 2013-05-05 23:46:12 +02:00
parent b6ebf71446
commit a8aeab5d57

View File

@ -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