]> git.pld-linux.org Git - packages/crawl.git/blame - crawl-makefile.patch
- cosmetics
[packages/crawl.git] / crawl-makefile.patch
CommitLineData
128c654a 1diff -ruN dc400b24-src./source/makefile.lnx dc400b24-src/source/makefile.lnx
2--- dc400b24-src./source/makefile.lnx Wed May 29 11:30:02 2002
3+++ dc400b24-src/source/makefile.lnx Fri Jan 17 01:20:46 2003
4@@ -20,8 +20,8 @@
5
6 LDFLAGS = -static -L/usr/lib
a9b9a753 7 MCHMOD = 2755
128c654a 8-# INSTALLDIR = /usr/games
9-INSTALLDIR = /opt/crawl/bin
a9b9a753 10+INSTALLDIR = $(DESTDIR)/usr/games
128c654a 11+#INSTALLDIR = /opt/crawl/bin
a9b9a753 12 LIB = -lncurses
13
14 # Include for Linux
128c654a 15@@ -31,7 +31,7 @@
16
17 install: $(GAME)
18 $(COPY) $(GAME) ${INSTALLDIR}
19- chmod ${MCHMOD} ${INSTALLDIR}/$(GAME)
20+ /bin/true ${MCHMOD} ${INSTALLDIR}/$(GAME)
21
22 clean:
23 $(DELETE) *.o
24@@ -50,7 +50,7 @@
25
26 $(GAME): $(OBJECTS)
27 ${CXX} ${LDFLAGS} $(INCLUDES) $(CFLAGS) $(OBJECTS) -o $(GAME) $(LIB)
28- chmod ${MCHMOD} $(GAME)
29+ /bin/true ${MCHMOD} $(GAME)
30
31 debug: $(OBJECTS)
32 ${CXX} ${LDFLAGS} $(INCLUDES) $(CFLAGS) $(OBJECTS) -o $(GAME) $(LIB)
33@@ -59,7 +59,7 @@
a9b9a753 34 ${CXX} -g -p ${LDFLAGS} $(INCLUDES) $(CFLAGS) $(OBJECTS) -o $(GAME) $(LIB)
35
36 .cc.o:
37- ${CXX} ${CFLAGS} -c $< ${INCLUDE}
38+ ${CXX} ${CFLAGS} -c $< ${INCLUDES}
39
40 .h.cc:
41 touch $@
This page took 0.067725 seconds and 4 git commands to generate.