mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
961254088e
SSC is a 2D space shoot-em-up featuring interesting physics and alife. Destroy all enemies on screen to proceed to the next level. Inherits a lot of ideas from the game Koules. PR: 61507 Submitted by: Igor Pokrovsky <tiamat@comset.net>
26 lines
597 B
Plaintext
26 lines
597 B
Plaintext
--- src/Makefile.in.orig Sat Jan 17 16:40:15 2004
|
|
+++ src/Makefile.in Sat Jan 17 16:41:53 2004
|
|
@@ -68,9 +68,9 @@
|
|
|
|
LIBS = \
|
|
../support/ode/lib/libode.a \
|
|
- `freetype-config --libs` \
|
|
+ `${LOCALBASE}/bin/freetype-config --libs` \
|
|
-lGLU -lGL -lSDL_mixer \
|
|
- `sdl-config --libs` \
|
|
+ `${SDL_CONFIG} --libs` \
|
|
-lpng -lz
|
|
|
|
LTLIBOBJS = @LTLIBOBJS@
|
|
@@ -118,8 +118,8 @@
|
|
target_alias = @target_alias@
|
|
INCLUDES = \
|
|
-I../support/ode/include \
|
|
- `freetype-config --cflags` \
|
|
- `sdl-config --cflags`
|
|
+ `${LOCALBASE}/bin/freetype-config --cflags` \
|
|
+ `${SDL_CONFIG} --cflags`
|
|
|
|
|
|
bin_PROGRAMS = ssc
|