# stupid makefile for muggi zip adder, modify the includes and lib patchs
# to suit your needs.

INCL=-I/usr/src/daydream/lib -I/usr/src/daydream/main
LIBS=-L/usr/src/daydream/lib -ldd

all:	mzadder

mzadder:	mzadder.c
		gcc -o mzadder mzadder.c $(INCL) $(LIBS)

install:	mzadder
		install -o bbs -g users mzadder /home/bbs/doors
