diff options
Diffstat (limited to 'games/wmshuffle/files/patch-Makefile')
-rw-r--r-- | games/wmshuffle/files/patch-Makefile | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/games/wmshuffle/files/patch-Makefile b/games/wmshuffle/files/patch-Makefile deleted file mode 100644 index c121f423a3df..000000000000 --- a/games/wmshuffle/files/patch-Makefile +++ /dev/null @@ -1,30 +0,0 @@ ---- Makefile.orig Wed May 15 18:38:32 2002 -+++ Makefile Wed May 15 18:43:28 2002 -@@ -1,14 +1,17 @@ --LIBDIR = -L/usr/X11R6/lib -+CC ?= gcc -+CFLAGS += -c -Wall -+INCDIR = -I${LOCALBASE}/include -+LIBDIR = -L${LOCALBASE}/lib - LIBS = -lXpm -lXext -lX11 - OBJS = wmshuffle.o ./wmgeneral/wmgeneral.o - - .c.o: -- cc -c -g -O2 -Wall $< -o $*.o -+ ${CC} ${CFLAGS} ${INCDIR} $< -o $*.o - - all: wmshuffle - - wmshuffle: $(OBJS) -- cc -o wmshuffle $^ $(LIBDIR) $(LIBS) -+ ${CC} -o wmshuffle $^ ${LIBDIR} ${LIBS} - - clean: - for i in $(OBJS) ; do \ -@@ -17,5 +20,4 @@ - rm -rf wmshuffle core *~ - - install: -- /usr/bin/install -c -o 0 -g 0 -s -m 755 wmshuffle /usr/local/bin/wmshuffle -- -+ @/usr/bin/install -c -s -m 755 wmshuffle ${DESTDIR}${PREFIX}/bin/wmshuffle |