home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / new / disk / cdrom / mkisofs / gnumakefile < prev    next >
Makefile  |  1994-05-29  |  667b  |  27 lines

  1. CC=gcc -c
  2. LD=gcc
  3. OPTIM= #-O
  4. DEBUG= #-g
  5. CFLAGS= -DAMIGA $(DEBUG) $(OPTIM)
  6. LDFLAGS= $(DEBUG)
  7. OBJS=mkisofs.o tree.o write.o hash.o rock.o exclude.o amiga.o convert.o
  8.  
  9. mkisofs: $(OBJS) unix/unixlib.lib
  10.     $(LD) -o mkisofs $(LDFLAGS) $(OBJS)
  11.  
  12. tree.o: tree.c mkisofs.h iso9660.h exclude.h
  13. write.o: write.c mkisofs.h iso9660.h
  14. hash.o: hash.c mkisofs.h
  15. rock.o: rock.c mkisofs.h iso9660.h
  16. exclude.o: exclude.c exclude.h
  17. amiga.o: amiga.c mkisofs.h
  18. convert.o: convert.c mkisofs.h
  19. mkisofs.o: mkisofs.c iso9660.h mkisofs.h exclude.h
  20.  
  21. clean:
  22.     rm -f *.o *.dbg *.lnk mkisofs
  23.  
  24. dist:
  25.     rm -f *.o *.dbg *.lnk unix/*.o unix/*.lib unix/testreaddir unix/teststat
  26.     rm -f unix/*.lnk unix/*.dbg
  27.