home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume13 / ishido / part01 / Makefile < prev    next >
Makefile  |  1992-04-10  |  904b  |  40 lines

  1. ################################################################################
  2. # Makefile for Ishido                                                  
  3. #
  4. ################################################################################
  5.  
  6. HIGH_SCORE_FILE=/home/cd1/evu2/jjs40/tmp/ishido_scores
  7. GAME_DIR=/home/cd1/evu2/jjs40/bin
  8.  
  9. ################################################################################
  10.  
  11. # Libs for SunOS 4.1
  12. LIBS= -lX11
  13.  
  14. # Libs for ISC Unix Sys V
  15. # LIBS= -lX11 -linet -lpt
  16.  
  17. CFLAGS=-DHIGH_SCORE_FILE='"$(HIGH_SCORE_FILE)"'
  18.  
  19. ################################################################################
  20.  
  21. OBJS= gl.o ishido.o
  22.  
  23. ################################################################################
  24.  
  25. all: ishido
  26.  
  27. ishido: $(OBJS)
  28.     cc -o ishido $(OBJS) $(LIBS)
  29.  
  30. install: all
  31.     cp ishido $(GAME_DIR)
  32.  
  33. clean:
  34.     -rm *.o
  35.     -rm Part*
  36.     -rm ishido
  37.  
  38. shar: clean
  39.     find . -print | makekit
  40.