chiark / gitweb /
REORG Delete everything that's not innduct or build system or changed for innduct
[innduct.git] / include / Makefile
diff --git a/include/Makefile b/include/Makefile
deleted file mode 100644 (file)
index fed5549..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-##  $Id: Makefile 6326 2003-05-05 21:47:43Z rra $
-##
-##  Currently just handles creation of the automatically generated header
-##  files.  Eventually, rules for installing INN's header files will go
-##  here.
-
-include ../Makefile.global
-
-top          = ..
-
-ALL          = inn/system.h inn/version.h
-
-EXTRA        = config.h paths.h
-
-PUBLIC       = config.h conffile.h dbz.h inndcomm.h libinn.h nntp.h ov.h \
-               paths.h storage.h
-
-all: $(ALL) $(EXTRA)
-
-clean:
-       rm -f $(ALL)
-
-clobber distclean: clean
-       rm -f $(EXTRA)
-
-depend tags ctags:
-
-profiled: all
-
-$(EXTRA) $(FIXSCRIPT):
-       @echo Run configure before running make.  See INSTALL for details.
-       @exit 1
-
-
-##  Build rules.
-
-inn/system.h: config.h $(top)/support/mksystem
-       $(top)/support/mksystem $(AWK) config.h > $@
-
-inn/version.h: $(top)/support/mkversion $(top)/Makefile.global
-       $(top)/support/mkversion '$(VERSION)' '$(VERSION_EXTRA)' > $@
-
-
-##  Installation rules.
-
-install:
-       for F in $(PUBLIC) ; do \
-           $(CP_RPUB) $$F $D$(PATHINCLUDE)/$$F ; \
-       done
-       $(top)/support/install-sh $(OWNER) -m 0755 -d $D$(PATHINCLUDE)/inn
-       for F in inn/*.h ; do \
-           $(CP_RPUB) $$F $D$(PATHINCLUDE)/$$F ; \
-       done