Re-generate the Makefiles

This commit is contained in:
Pierre Pronchery 2016-01-20 02:09:00 +01:00
parent ce87cd6aad
commit 5c9209fcc1

View File

@ -1,4 +1,4 @@
TARGETS = $(OBJDIR)shlint.log $(OBJDIR)tests.log
TARGETS = $(OBJDIR)shlint.log $(OBJDIR)tests.log $(OBJDIR)xmllint.log
OBJDIR =
PREFIX = /usr/local
DESTDIR =
@ -16,10 +16,14 @@ $(OBJDIR)shlint.log: ../doc/scripts/shlint.sh
$(OBJDIR)tests.log: $(OBJDIR)../src/configure$(EXEEXT) binary/project.conf binary/Makefile.Darwin binary/Makefile.NetBSD binary/Makefile.Windows library/project.conf library/Makefile.Darwin library/Makefile.Linux library/Makefile.NetBSD library/Makefile.Windows libtool/project.conf libtool/Makefile.Darwin libtool/Makefile.Linux libtool/Makefile.NetBSD libtool/Makefile.Windows object/project.conf object/Makefile.NetBSD package/project.conf package/Makefile.NetBSD plugin/Makefile.Darwin plugin/Makefile.NetBSD script/project.conf script/Makefile.NetBSD tests.sh
./tests.sh -P "$(PREFIX)" -- "$(OBJDIR)tests.log"
$(OBJDIR)xmllint.log: ../doc/scripts/xmllint.sh
../doc/scripts/xmllint.sh -P "$(PREFIX)" -- "$(OBJDIR)xmllint.log"
clean:
$(RM) -- $(shlint.log_OBJS) $(tests.log_OBJS)
$(RM) -- $(shlint.log_OBJS) $(tests.log_OBJS) $(xmllint.log_OBJS)
../doc/scripts/shlint.sh -c -P "$(PREFIX)" -- "shlint.log"
./tests.sh -c -P "$(PREFIX)" -- "tests.log"
../doc/scripts/xmllint.sh -c -P "$(PREFIX)" -- "xmllint.log"
distclean: clean
$(RM) -- $(TARGETS)