Makefile.in 367 B

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