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 / lib / Makefile < prev    next >
Makefile  |  1992-07-18  |  316b  |  15 lines

  1.  
  2. RM = rm -f
  3.  
  4. # one of these options is needed to fool Xlibint.h to do preprocessor
  5. # concatenation the "right" way.  Either one will do.
  6. # CFLAGS = -cckr
  7. CFLAGS = -D__STDC__
  8.  
  9. Xxyz.o : Xxyz.c ../include/xyzext.h ../include/xyzstr.h
  10.     $(CC) $(CFLAGS) -c Xxyz.c -I../include -I../include/nonXYZ 
  11.  
  12. clean :
  13.     $(RM) Xxyz.o
  14.  
  15.