1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/games/umark/files/Makefile

25 lines
368 B
Makefile

#
# $FreeBSD$
#
BIN= umark
INCS= `pkg-config gtk+-2.0 --cflags`
DEFS= -DPACKAGE_DATA_DIR=\"${PREFIX}/share\" -DPACKAGE=\"${BIN}\"
LIBS= `pkg-config gtk+-2.0 --libs`
OBJS = \
callbacks.o \
interface.o \
main.o \
support.o \
.c.o:
${CC} ${CFLAGS} ${DEFS} ${INCS} -c $< -o $*.o
all: ${OBJS}
${CC} ${CFLAGS} -o ${BIN} ${OBJS} ${LIBS}
clean:
-rm -f *.o *.core