home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume2 / spaceout / Makefile next >
Makefile  |  1991-08-07  |  336b  |  20 lines

  1. #
  2. # Makefile for Spaceout Version 1.1
  3. # 2/14/88
  4. #
  5. # Copyright (c) 1988, John H. Pochmara
  6. # You may copy Spaceout in whole or in part as long as you don't
  7. # try to make money off it, or pretend that you wrote it.
  8.  
  9. LIBS= -lX11
  10. SCR = spaceout.c 
  11. OBJ = spaceout.o 
  12. CFLAGS = -O -c 
  13.  
  14. space:    $(OBJ)
  15.     cc -o space $(OBJ) $(LIBS)
  16.  
  17. $(OBJ):    
  18.