# Makefile.in for src/mod/compress.mod/
# $Id: Makefile.in,v 1.5 2000/03/31 23:04:22 fabian Exp $

ZLIB = @ZLIB@
srcdir = .


doofus:
	@echo ""
	@echo "Let's try this from the right directory..."
	@echo ""
	@cd ../../../ && make

static: ../compress.o
	@echo "$(ZLIB)" >> ../mod.xlibs

modules: ../../../compress.so

../compress.o:
	$(CC) $(CFLAGS) $(CPPFLAGS) -DMAKING_MODS -c $(srcdir)/compress.c
	rm -f ../compress.o
	mv compress.o ../

../../../compress.so: ../compress.o
	$(LD) -o ../../../compress.so ../compress.o $(ZLIB)
	$(STRIP) ../../../compress.so

depend:
	$(CC) $(CFLAGS) $(CPPFLAGS) -MM $(srcdir)/compress.c > .depend

clean:
	@rm -f .depend *.o *.so *~

distclean: clean
	@rm -f Makefile config.cache config.log config.status config.h compress_config.h

#safety hash
../compress.o: .././compress.mod/compress.c ../../../src/mod/module.h \
 ../../../src/main.h ../../../src/lang.h ../../../src/eggdrop.h \
 ../../../src/flags.h ../../../src/proto.h ../../../lush.h \
 ../../../src/misc_file.h ../../../src/cmdt.h ../../../src/tclegg.h \
 ../../../src/tclhash.h ../../../src/chan.h ../../../src/users.h \
 ../../../src/compat/compat.h ../../../src/compat/inet_aton.h \
 ../../../src/compat/snprintf.h ../../../src/compat/memset.h \
 ../../../src/compat/memcpy.h ../../../src/compat/strcasecmp.h \
 ../../../src/mod/modvals.h ../../../src/tandem.h \
 ../../../src/mod/share.mod/share.h ../compress.mod/compress_config.h \
 ../compress.mod/compress.h ../compress.mod/tclcompress.c
