| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- # Makefile for src/mod/dns.mod/
- RESLIB = @RESLIB@
- RESINCLUDE = @RESINCLUDE@
- srcdir = .
- doofus:
- @echo ""
- @echo "Let's try this from the right directory..."
- @echo ""
- @cd ../../../ && make
- static: ../dns.o
- @echo "$(RESLIB)" >> ../mod.xlibs
- ../dns.o:
- $(CC) $(CFLAGS) $(CPPFLAGS) $(RESINCLUDE) -DMAKING_MODS -c $(srcdir)/dns.c
- @rm -f ../dns.o
- mv dns.o ../
- depend:
- $(CC) $(CFLAGS) $(CPPFLAGS) -MM $(srcdir)/dns.c > .depend
- clean:
- @rm -f .depend *.o *~
- distclean: clean
- @rm -f Makefile config.cache config.log config.status
- #safety hash
- ../dns.o: .././dns.mod/dns.c ../../../src/mod/module.h \
- ../../../src/main.h ../../../config.h ../../../src/conf.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/compat/strftime.h \
- ../../../src/mod/modvals.h ../../../src/tandem.h ../dns.mod/dns.h \
- ../dns.mod/coredns.c
|