home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Games / xmemory-1.0 / Imakefile next >
Encoding:
Makefile  |  1995-07-01  |  396 b   |  21 lines

  1. # Imakefile written by Ron Record (rr@sco.com) adapted from Makefile
  2. # supplied with original sources
  3. #
  4.  
  5. CC            = CC -belf
  6.  
  7. SRCS          = xmemory.C
  8. OBJS          = xmemory.o
  9.  
  10. INCLUDES      =  -I/usr/skunk/include/fixes/os5
  11.  
  12. all: xmemory
  13.  
  14. xmemory: $(OBJS)
  15.     $(CC) $(CFLAGS) -o xmemory $(OBJS) $(XLIB) $(EXTRA_LIBRARIES) -lC
  16.  
  17. xmemory.o: xmemory.C
  18.     $(CC) $(CFLAGS) -c xmemory.C
  19.  
  20. DependTarget()
  21.