# DO NOT EDIT
SYSTYPE	= RHAPSODY5
AR	= ar
ARFL	= rv
RANLIB	= ranlib
SYSLIBS	= 
CC	= /usr/bin/cc 
OPT	= -O
DEBUG	= -g
SHELL	= /bin/sh
SRCS	= fsstone.c
OBJS	= fsstone.o
HDRS	= 
TESTSRC	= 
WARN	= -W -Wformat -Wimplicit -Wmissing-prototypes \
	-Wparentheses -Wstrict-prototypes -Wswitch -Wuninitialized \
	-Wunused
DEFS	= -I. -I$(INC_DIR) -D$(SYSTYPE)
CFLAGS	= $(DEBUG) $(OPT) $(DEFS)
TESTPROG= 
PROG	= fsstone
INC_DIR	= ../include
LIBS	= ../lib/libglobal.a ../lib/libutil.a

.c.o:;	$(CC) $(CFLAGS) -c $*.c

all:	$(PROG)

Makefile: Makefile.in
	(set -e; echo "# DO NOT EDIT"; $(OPTS) sh ../makedefs; cat $?) >$@

fsstone: fsstone.o $(LIBS)
	$(CC) $(CFLAGS) -o $@ fsstone.o $(LIBS) $(SYSLIBS)

test:	$(TESTPROG)

update: ../bin/fsstone

../bin/fsstone: fsstone
	cp $? $@

printfck: $(OBJS) $(PROG)
	rm -rf printfck
	mkdir printfck
	sed '1,/^# do not edit/!d' Makefile >printfck/Makefile
	set -e; for i in *.c; do printfck -f .printfck $$i >printfck/$$i; done
	cd printfck; make "INC_DIR=../../include" `cd ..; ls *.o`
lint:
	lint $(DEFS) $(SRCS) $(LINTFIX)

clean:
	rm -f *.o *core $(PROG) $(TESTPROG) junk
	rm -rf printfck

tidy:	clean

depend: $(MAKES)
	(sed '1,/^# do not edit/!d' Makefile.in; \
	set -e; for i in [a-z][a-z0-9]*.c; do \
	    $(CC) -E $(DEFS) $(INCL) $$i | sed -n -e '/^# *1 *"\([^"]*\)".*/{' \
	    -e 's//'`echo $$i|sed 's/c$$/o/'`': \1/' -e 'p' -e '}'; \
	done) | grep -v '[.][o][:][ ][/]' >$$$$ && mv $$$$ Makefile.in
	@make -f Makefile.in Makefile

# do not edit below this line - it is generated by 'make depend'
fsstone.o: fsstone.c
fsstone.o: ../include/sys_defs.h
fsstone.o: ../include/msg.h
fsstone.o: ../include/msg_vstream.h
fsstone.o: ../include/vstream.h
fsstone.o: ../include/vbuf.h
