openbsd-ports/games/einstein/patches/patch-Makefile
landry 16cf36d201 Import einstein, a remake of old DOS game Sherlock which was inspired by
Albert Einstein's puzzle.
Submitted by Anton Yabchinskiy (thanks!) on ports@ plus some tweaks by me.
2009-04-03 17:56:41 +00:00

33 lines
1.1 KiB
Plaintext

$OpenBSD: patch-Makefile,v 1.1.1.1 2009/04/03 17:56:41 landry Exp $
--- Makefile.orig Sun Sep 25 23:20:30 2005
+++ Makefile Fri Apr 3 19:41:41 2009
@@ -5,7 +5,6 @@
########################################
# installation prefix
-PREFIX=/usr/local
########################################
#
@@ -16,7 +15,7 @@ PREFIX=/usr/local
OPTIMIZE=#-O6 -march=pentium4 -mfpmath=sse -fomit-frame-pointer -funroll-loops
PROFILER=#-pg
DEBUG=#-ggdb
-CXXFLAGS=-pipe -Wall $(OPTIMIZE) $(DEBUG) `sdl-config --cflags` -DPREFIX=L\"$(PREFIX)\" $(PROFILER)
+CXXFLAGS= $(CFLAGS) $(OPTIMIZE) $(DEBUG) `sdl-config --cflags` -DPREFIX=L\"$(PREFIX)\" $(PROFILER)
LNFLAGS=-pipe -lSDL_ttf -lfreetype `sdl-config --libs` -lz -lSDL_mixer $(PROFILER)
INSTALL=install
@@ -61,8 +60,9 @@ run: $(TARGET)
./$(TARGET)
install: $(TARGET)
- $(INSTALL) -s -D $(TARGET) $(PREFIX)/bin/$(TARGET)
- $(INSTALL) -D einstein.res $(PREFIX)/share/einstein/res/einstein.res
+ $(INSTALL) -s $(TARGET) $(PREFIX)/bin/$(TARGET)
+ $(INSTALL) -d $(PREFIX)/share/einstein/res
+ $(INSTALL) einstein.res $(PREFIX)/share/einstein/res/einstein.res
# DO NOT DELETE THIS LINE -- make depend depends on it.