fixed Makefile to install screensaver properly on Windows

git-svn-id: svn://anubis/dwscr/trunk@120 5bef9df8-b654-44bb-925b-0ff18baa8f8c
This commit is contained in:
josh 2009-10-16 17:23:09 +00:00
parent 40627ed425
commit 610c3cffef

View File

@ -26,7 +26,7 @@ ifeq ($(WINDOWS),1)
LDFLAGS += -lopengl32 -lglu32 -lmingw32
TARGET := $(TARGET).exe
SSNAME := dwscr.scr
INSTALLDIR := C:\WINDOWS
INSTALLDIR := C:/WINDOWS
OBJS += displayinfo-win32.o
else
LDFLAGS += -lGL -lGLU
@ -64,7 +64,7 @@ ss/ss.a:
ifeq ($(WINDOWS),1)
.PHONY: install
install:
cp $(TARGET) $(INSTALLDIR)\$(SSNAME)
cp $(TARGET) $(INSTALLDIR)/$(SSNAME)
endif
.PHONY: clean