# Note! The CFLAGS definitions are now in the main makefile...

.c.s:
	$(CC) $(_SFLAGS) -S $<
.c.o:
	$(CC) $(_CFLAGS) -c $<
.s.o:
	$(AS) -o $*.o $<

OBJS = lzrw3.o


lzrw3.o: compress.h

clean:
	rm -f core *.o *.a *.s

dep:
	$(CPP) -M *.c > .depend

#
# include a dependency file if one exists
#
ifeq (.depend,$(wildcard .depend))
include .depend
endif
#{{{}}}
