home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / SoundAndMusic / cmix / tape.backup / Makefile < prev    next >
Makefile  |  1991-12-17  |  914b  |  35 lines

  1. CFLAGS = -O -g
  2. RESTORE = sfrestore.o sfcodes.o printsf.o ../sys/wheader.o
  3. BACKUP = sfbackup.o ../sys/sfcodes.o ../sys/printsf.o ../sys/wheader.o
  4. NRESTORE = nsfrestore.o ../sys/sfcodes.o ../sys/printsf.o ../sys/wheader.o
  5. NBACKUP = nsfbackup.o ../sys/sfcodes.o ../sys/printsf.o ../sys/wheader.o
  6. WRITELABEL = writelabel.o ../sys/wheader.o ../sys/sfcodes.o
  7. NWRITELABEL = nwritelabel.o ../sys/wheader.o ../sys/sfcodes.o
  8. LDFLAGS = ../sys/cmix.o ../lib/genlib.a -lm 
  9. TAPE = sfbackup sfrestore writelabel nsfrestore nsfbackup nwritelabel
  10.  
  11. all: $(TAPE)
  12.  
  13. clean:
  14.     rm -f *.o
  15.  
  16. sfbackup:   $(BACKUP) 
  17.     cc -o sfbackup $(BACKUP)
  18.  
  19. sfrestore:    $(RESTORE)
  20.     cc -o sfrestore $(RESTORE)
  21.  
  22. writelabel:    $(WRITELABEL) label.h
  23.     cc -o writelabel $(WRITELABEL)
  24.  
  25. nsfbackup:   $(NBACKUP) 
  26.     cc -o nsfbackup $(NBACKUP)
  27.  
  28. nsfrestore:    $(NRESTORE)
  29.     cc -o nsfrestore $(NRESTORE)
  30.  
  31. nwritelabel:    $(NWRITELABEL) nlabel.h
  32.     cc -o nwritelabel $(NWRITELABEL)
  33.  
  34.  
  35.