# be sure to change INCL and LIBS paths to something your system
# understands.

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

all:	luseradd

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

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