From 75a543966af0bb94a8cc94c0183da069c121f54b Mon Sep 17 00:00:00 2001 From: Mylloon Date: Sun, 15 May 2022 21:31:56 +0200 Subject: [PATCH] Remove Visual Studio .sln and .vcxproj generation --- Makefile | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 82fe489..a0bec79 100644 --- a/Makefile +++ b/Makefile @@ -22,11 +22,9 @@ VERSION = 1.0 distdir = $(PACKNAME)_$(PROGNAME)-$(VERSION) HEADERS = $(wildcard includes/*.h) SOURCES = window.c $(wildcard src/*.c) -MSVCSRC = $(patsubst %,,$(SOURCES)) OBJ = $(SOURCES:.c=.o) DOXYFILE = documentation/Doxyfile -VSCFILES = $(PROGNAME).vcxproj $(PROGNAME).sln -EXTRAFILES = COPYING $(wildcard shaders/*.?s images/*) $(VSCFILES) +EXTRAFILES = COPYING $(wildcard shaders/*.?s images/*) DISTFILES = $(SOURCES) Makefile $(HEADERS) $(DOXYFILE) $(EXTRAFILES) # Traitements automatiques pour ajout des chemins et options @@ -89,12 +87,6 @@ doc: $(DOXYFILE) mv -f $<.new $< cd documentation && doxygen && cd .. -msvc: $(VSCFILES) - @echo "Now these files ($?) already exist. If you wish to regenerate them, you should first delete them manually." -$(VSCFILES): - @echo "Generating $@ ..." - @cat ../../Windows/templates/gl4dSample$(suffix $@) | sed -e "s/INSERT_PROJECT_NAME/$(PROGNAME)/g" | sed -e "s/INSERT_TARGET_NAME/$(PROGNAME)/" | sed -e "s/INSERT_SOURCE_FILES/$(MSVCSRC)/" > $@ - all: $(PROGNAME) clean: