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 / xyztest / Makefile < prev    next >
Makefile  |  1992-07-18  |  220b  |  14 lines

  1.  
  2. RM = rm -f
  3.  
  4. CFLAGS = -I../../include
  5.  
  6. # for SGI machines
  7. SGILIBS = -lsun
  8.  
  9. xyztest : xyztest.o ../../lib/Xxyz.o
  10.     $(CC) $(CFLAGS) -o $@ xyztest.o ../../lib/Xxyz.o -lXext -lX11 $(SGILIBS)
  11.  
  12. clean :
  13.     $(RM) xyztest xyztest.o
  14.