home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xyzext.zip / xyz / clients / xyztool / Makefile < prev    next >
Makefile  |  1992-07-18  |  366b  |  19 lines

  1.  
  2. RM = rm -f
  3.  
  4. # needed by SGI machines
  5. # SGIFLAGS = -cckr
  6. CFLAGS = -g -L$(XVIEWHOME)/lib -I$(XVIEWHOME)/include -I../../include $(SGIFLAGS)
  7.  
  8. SRCS = xyztool.c vfork.c
  9. OBJS = xyztool.o vfork.o
  10. LIBS = ../../lib/Xxyz.o -lxview -lolgx -lXext -lX11_s -lsun -lmalloc -lc_s
  11.  
  12. xyztool : $(OBJS)
  13.     $(RM) $@
  14.     $(CC) -o $@ $(CFLAGS) $(OBJS) $(LIBS)
  15.  
  16. clean :
  17.     $(RM) xyztool $(OBJS)
  18.  
  19.