#Customize this for your compiler.  

CC = cc
#CC = gcc

CFLAGS= -O
#CFLAGS= -O2 -pipe  

#DO NOT MODIFY ANYTHING BELOW THIS LINE.
#   ^^^

RM= -rm -f
EXE= mush-strip

all: mush-strip infoserv linktool podium

mush-strip: Makefile
	${RM} mush-strip
	$(CC) $(CFLAGS) mush-strip.c -o mush-strip

infoserv: mush-strip
	${RM} infoserv.filt
	$(EXE) < infoserv > infoserv.filt

linktool:  mush-strip
	${RM} linktool.filt
	$(EXE) < linktool > linktool.filt

podium:  mush-strip
	${RM} podium.filt
	$(EXE) < podium > podium.filt

clean: Makefile
	${RM} mush-strip mush-strip.o infoserv.filt linktool.filt podium.filt

depend: Makefile
	makedepend mush-strip.c

# DO NOT DELETE THIS LINE -- make depend depends on it.
