# Imakefile for capture

# Modify these. They are most likely inappropriate for your system.
BASEDIR	= /vol/X11/share/capture
#BINDIR	= $(UNPRIV)
#MANDIR  = /afs/andrew.cmu.edu/usr0/games/man/man6

EXTRA_LIBRARIES = $(XLIB)

DEFINES = -DBASEDIRNAME=\"$(BASEDIR)\"

OBJS = capture.o events.o game.o
SRCS = capture.c events.c game.c

ComplexProgramTarget(capture)

install:: install.bitmaps

install.bitmaps:
	@for i in bitmaps//**/*; do \
		(set -x; install -c $$i $(BASEDIR)); \
	done
