# Muggifront v1.2f Makefile.
#
# Remember to change the LIBS to point to your ddlib.h and dd.h
CC=		gcc -O2
INCL=		-I../lib/ -I.. -I../main/
LIBS=		-L/home/bbs/lib/

all:	mfront

%.o: %.c
	$(CC) -c $< $(INCL)

mfront:	mfront.o
	$(CC) -o $@ mfront.o $(LIBS) -ldd

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

clean:
	rm -f *.o *~ mfront
