home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 160.lha / StructureBrowser_v1.3 / Sources / makefile < prev    next >
Encoding:
Makefile  |  1988-04-27  |  489 b   |  20 lines

  1. # makefile for Manx make utility
  2. # This will make "SB", Structure Browser.
  3.  
  4. OBJS =   sb.o sbwindow.o sbscreen.o sbgfx.o sbgadget.o sbio.o sblibrary.o\
  5.  sbview.o sbrequest.o sbtext.o output.o sbmenu.o sbitext.o sbimage.o\
  6.  sbborder.o sblayer.o
  7.  
  8. sb       :  $(OBJS) twmClient.o
  9.             ln $(OBJS) twmClient.o -lc
  10.  
  11. sb.p     :  header/sb.h
  12.             cc +Hsb.p header/sb.h
  13.  
  14. $(OBJS)  :  sb.p
  15.             cc +Isb.p $*.c
  16.  
  17.  
  18. twmClient.o : header/twm.h
  19.               cc twmClient
  20.