mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
deeae26872
Rubix is another X11-based incarnation of the world-famous "Rubik's Cube" game. It has the capability of saving games, which, according to the author, can't be found in any other Rubik's Cube games. PR: 15807 Submitted by: Will Andrews <andrews@technologist.com>
50 lines
1.2 KiB
Plaintext
50 lines
1.2 KiB
Plaintext
--- Makefile.orig Mon Dec 6 07:19:16 1999
|
|
+++ Makefile Sun Jan 2 13:07:30 2000
|
|
@@ -11,35 +11,38 @@
|
|
#
|
|
|
|
#customize to fit your needs (it does not work for now).
|
|
-architecture=-DPC_ARCHI
|
|
+#architecture=-DPC_ARCHI
|
|
+module_file=-DMODULE_FILE_PREFIX=\"$(PREFIX)/share/rubix/\"
|
|
|
|
#SOLARIS=-lsocket
|
|
|
|
-CC=gcc
|
|
-CFLAGS=-Wall -O3 -fomit-frame-pointer -ffast-math -Iplayer \
|
|
- $(architecture)
|
|
+CC?=gcc
|
|
+CFLAGS+=-Wall -fomit-frame-pointer -ffast-math -Iplayer \
|
|
+ $(architecture) $(module_file)
|
|
#CFLAGS=-Wall -g -ffast-math -Iplayer \
|
|
# $(architecture)
|
|
-XINC=-I/usr/X11R6/include
|
|
-XLIB=-L/usr/X11R6/lib -lX11
|
|
+XINC=-I$(PREFIX)/include
|
|
+XLIB=-L$(PREFIX)/lib -lX11
|
|
|
|
#the following should not be changed.
|
|
|
|
OBJ=cube.o event.o fillpoly.o line.o main.o screen.o sound.o player/player.a
|
|
|
|
+all: rubix
|
|
+
|
|
rubix : $(OBJ)
|
|
$(CC) $(CFLAGS) -o $@ $^ -lm $(XLIB) $(SOLARIS)
|
|
# strip rubix
|
|
|
|
clean :
|
|
rm -f *.o *~ core *.bak *.dat gmon.out
|
|
- (cd player; make clean)
|
|
+ (cd player; $(GMAKE) clean)
|
|
|
|
dep :
|
|
makedepend -Y *.c -s"#I like the GNU tools" -Iplayer
|
|
|
|
player/player.a : player/*.c player/*.h
|
|
- (cd player; make)
|
|
+ (cd player; $(GMAKE))
|
|
|
|
%.o : %.c
|
|
$(CC) $(CFLAGS) $(XINC) -c -o $@ $<
|