Makefile.in 354 B

12345678910111213141516171819202122232425
  1. VPATH = @srcdir@
  2. srcdir = @srcdir@
  3. GENFILES = dpkg.h
  4. include ../Makefile.conf
  5. all:: $(GENFILES)
  6. install:: all
  7. clean::
  8. rm -f $(GENFILES)
  9. cvslean:: clean
  10. rm -f Makefile
  11. dpkg.h: dpkg.h.in
  12. sed -e 's,#CONFIGDIR#,$(dpkgconfdir),' \
  13. -e 's,#ADMINDIR#,$(admindir),' \
  14. -e 's,#LIBDIR#,$(dpkglibdir),' $< > $@
  15. .PHONY: all install clean distclean