diff --git a/Makefile b/Makefile index 28c328f..94da703 100644 --- a/Makefile +++ b/Makefile @@ -117,10 +117,14 @@ print-variables: @echo RM: $(RM) -raspi: +raspi3: $(CXX) $(SOURCES) -D RASPI $(CXXFLAGS) -lSDL2 -o $(TARGET_FILE) strip -s -R .comment -R .gnu.version $(TARGET_FILE) --strip-unneeded +raspi5: + $(CXX) $(SOURCES) -D VERBOSE $(CXXFLAGS) $(LDFLAGS) -o $(TARGET_FILE) + strip -s -R .comment -R .gnu.version $(TARGET_FILE) --strip-unneeded + windows: @echo off $(CXX) $(SOURCES) $(CXXFLAGS) -Wl,-subsystem,windows $(LDFLAGS) -o "$(TARGET_FILE).exe"