mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-15 23:50:44 +00:00
0659f666d2
a compiler for producing adventure games. The output is compatible with Infocom interpreters, which offers cross-platform compatibility and a choice of interface.
16 lines
399 B
Makefile
16 lines
399 B
Makefile
# $Id$
|
|
|
|
OBJS= arrays.o asm.o bpatch.o chars.o directs.o errors.o expressc.o \
|
|
expressp.o files.o inform.o lexer.o linker.o memory.o objects.o \
|
|
states.o symbols.o syntax.o tables.o text.o veneer.o verbs.o
|
|
|
|
CFLAGS+= -DInclude_Directory=\"${PREFIX}/share/inform\"
|
|
|
|
all: inform
|
|
|
|
inform: $(OBJS)
|
|
$(CC) $(CFLAGS) -o ${.TARGET} $(OBJS)
|
|
|
|
install: inform
|
|
${BSD_INSTALL_PROGRAM} inform ${PREFIX}/bin
|