home *** CD-ROM | disk | FTP | other *** search
/ Dream 49 / Amiga_Dream_49.iso / beos / utils / mkisofs-1.000 / mkisofs-1.11-beos / diag / Makefile < prev    next >
Makefile  |  1998-01-25  |  1KB  |  60 lines

  1. # Generated automatically from Makefile.in by configure.
  2. #
  3. # $Id: Makefile.in,v 1.2 1997/02/23 19:31:25 eric Rel $
  4. #
  5. ## Makefile for mkisofs.
  6.  
  7. #### Start of system configuration section. ####
  8.  
  9. srcdir = .
  10.  
  11. CC = mwcc
  12.  
  13. INSTALL = /boot/apps/GeekGadgets/bin/install -c
  14. INSTALL_PROGRAM = ${INSTALL}
  15. INSTALL_DATA = ${INSTALL} -m 644
  16.  
  17. LIBS = 
  18.  
  19. prefix = /usr/local
  20. exec_prefix = $(prefix)
  21.  
  22. bindir = $(exec_prefix)/bin
  23.  
  24. # Where to put the manual pages.
  25. mandir = $(prefix)/man/man8
  26. # Extension (not including `.') for the manual page filenames.
  27. manext = 8
  28.  
  29. #### End of system configuration section. ####
  30.  
  31. CFLAGS=
  32.  
  33. all: dump isodump isovfy isoinfo
  34.  
  35. install: Makefile isodump isovfy isoinfo isoinfo.8
  36.     [ -d $(bindir) ] || mkdir $(bindir)
  37.     [ -d $(mandir) ] || mkdir $(mandir)
  38.     $(INSTALL_PROGRAM) isodump $(bindir)/isodump
  39.     $(INSTALL_PROGRAM) isovfy  $(bindir)/isovfy
  40.     $(INSTALL_PROGRAM) isoinfo $(bindir)/isoinfo
  41.     -$(INSTALL_DATA) $(srcdir)/isoinfo.8 $(mandir)/isoinfo.$(manext)
  42.  
  43. config.h: ../configure
  44.     (cd ..; ./configure)
  45.  
  46. Makefile: Makefile.in ../configure
  47.     (cd ..; ./configure)
  48.  
  49. dump: Makefile ../config.h dump.c
  50.     ${CC} $(CFLAGS) -o dump dump.c
  51. isodump: Makefile ../config.h isodump.c
  52.     ${CC} $(CFLAGS) -o isodump isodump.c
  53. isovfy: Makefile isovfy.c
  54.     ${CC} $(CFLAGS) -o isovfy isovfy.c
  55. isoinfo:Makefile ../config.h isoinfo.c
  56.     ${CC} $(CFLAGS) -o isoinfo isoinfo.c
  57.  
  58. clean:
  59.     rm -f dump isodump isovfy isoinfo
  60.