Makefile.in
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:1k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. #
  2. # $Id: Makefile.in,v 1.4 1998/06/02 02:41:02 eric Exp $
  3. #
  4. ## Makefile for mkisofs.
  5. #### Start of system configuration section. ####
  6. srcdir = @srcdir@
  7. VPATH = @srcdir@
  8. CC = @CC@
  9. INSTALL = @INSTALL@
  10. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  11. INSTALL_DATA = @INSTALL_DATA@
  12. LIBS = @LIBS@
  13. prefix = /usr/local
  14. exec_prefix = $(prefix)
  15. bindir = $(exec_prefix)/bin
  16. # Where to put the manual pages.
  17. mandir = $(prefix)/man/man8
  18. # Extension (not including `.') for the manual page filenames.
  19. manext = 8
  20. #### End of system configuration section. ####
  21. CFLAGS=@CFLAGS@ -I.
  22. LDFLAGS=@LDFLAGS@
  23. all: dump isodump isovfy isoinfo
  24. install: Makefile isodump isovfy isoinfo isoinfo.8
  25. [ -d $(bindir) ] || mkdir $(bindir)
  26. [ -d $(mandir) ] || mkdir $(mandir)
  27. $(INSTALL_PROGRAM) isodump $(bindir)/isodump
  28. $(INSTALL_PROGRAM) isovfy  $(bindir)/isovfy
  29. $(INSTALL_PROGRAM) isoinfo $(bindir)/isoinfo
  30. -$(INSTALL_DATA) $(srcdir)/isoinfo.8 $(mandir)/isoinfo.$(manext)
  31. config.h: ../configure
  32. (cd ..; ./configure)
  33. Makefile: Makefile.in ../configure
  34. (cd ..; ./configure)
  35. dump: Makefile ../config.h dump.c
  36. ${CC} $(CFLAGS) -o dump $(srcdir)/dump.c
  37. isodump: Makefile ../config.h isodump.c
  38. ${CC} $(CFLAGS) -o isodump $(srcdir)/isodump.c
  39. isovfy: Makefile isovfy.c
  40. ${CC} $(CFLAGS) -o isovfy $(srcdir)/isovfy.c
  41. isoinfo:Makefile ../config.h isoinfo.c
  42. ${CC} $(CFLAGS) -o isoinfo $(srcdir)/isoinfo.c
  43. clean:
  44. rm -f dump isodump isovfy isoinfo