From 610c3cffef395a73544b96f89ee0edcb633a171f Mon Sep 17 00:00:00 2001 From: josh Date: Fri, 16 Oct 2009 17:23:09 +0000 Subject: [PATCH] fixed Makefile to install screensaver properly on Windows git-svn-id: svn://anubis/dwscr/trunk@120 5bef9df8-b654-44bb-925b-0ff18baa8f8c --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a812017..61ad341 100644 --- a/Makefile +++ b/Makefile @@ -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