diff options
| author | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-12-29 20:07:38 +0000 |
|---|---|---|
| committer | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-12-29 20:07:38 +0000 |
| commit | d6bb55476c9aa4771e2b7f24cee05325a1df4117 (patch) | |
| tree | ed830d3c2c748f4c1ed6de25922461d701a805de /include/Makefile | |
| parent | 0bb13ddf57c968db37a997851650d768641b3528 (diff) | |
Revived Autotools from the grave, although it'll need some tweaking to work alongside CMake now. (In other words, don't use this commit, I committed this so I don't have to re-add these files again if I screw something up.)
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1876 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include/Makefile')
| -rw-r--r-- | include/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/Makefile b/include/Makefile new file mode 100644 index 000000000..b5641c71b --- /dev/null +++ b/include/Makefile @@ -0,0 +1,20 @@ + +all: services.h extern.h pseudo.h version.h + +version.h: Makefile version.sh services.h pseudo.h messages.h $(SRCS) + sh version.sh + +services.h: sysconf.h config.h extern.h + touch $@ + +extern.h: slist.h + touch $@ + +pseudo.h: commands.h timeout.h encrypt.h datafiles.h slist.h + touch $@ + +clean: + (rm -f language.h) + +distclean: clean + (rm -f sysconf.h version.h) |
