freebsd-ports/games/54321/files/variables.GNU
Ying-Chieh Liao fd318ea17c add 54321
54321 is five games in four-, three-, or two-dimensions for one player

PR:		32197
Submitted by:	Leland Wang <llwang@infor.org>
2001-11-23 02:28:12 +00:00

24 lines
680 B
Gnuplot

############################################################
CXX := c++
STRIP := strip
############################################################
MKDIR_CMD = test -d $(@D) || mkdir -p $(@D)
############################################################
SDL := /usr/local
SDL_IMAGE := /usr/local
CPPFLAGS += -I${SDL}/include/SDL11 -I${SDL_IMAGE}/include/SDL11
LDFLAGS += \
-L${SDL_IMAGE}/lib -Wl,-rpath -Wl,${SDL_IMAGE}/lib \
-L${SDL}/lib -Wl,-rpath -Wl,${SDL}/lib \
-lSDL_image -lSDL-1.1 -lSDLmain-1.1 -pthread -lpng
prog: Release/54321-$(ARCH)
Release/54321-$(ARCH):
-@$(MKDIR_CMD)
echo '#!/bin/sh' > $@
echo "cd ./bin/$(ARCH) && exec ./54321 \$$*" >> $@
chmod 755 $@