home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xpool-10.zip / Xpool / Makefile < prev    next >
Makefile  |  1992-05-26  |  645b  |  28 lines

  1. #
  2. #
  3. # Makefile for XPoolTable   I. ARIT Hidirbeyli,TR., 09400 
  4. #
  5. #
  6. CC=cc
  7. CFLAGS= -O 
  8. LIBS= -lX11 -lm
  9.  
  10. HEADERS=  definition.h
  11.  
  12. SRCS= main.c ball.c color.c coordinator.c event.c goodies.c  init.c  stick.c 
  13.  
  14. OBJS= main.o ball.o color.o coordinator.o event.o goodies.o  init.o  stick.o 
  15.  
  16. Xpool: $(OBJS)
  17.      $(CC) $(CFLAGS) -o Xpool $(OBJS) $(LIBS)
  18.  
  19. init.o:         init.c ball.bmp tile.bmp definition.h
  20. main.o:        main.c definition.h
  21. ball.o:        ball.c definition.h
  22. color.o:    color.c definition.h
  23. coordinator.o:     coordinator.c definition.h
  24. event.o:    event.c definition.h
  25. goodies.o:    goodies.c definition.h
  26. init.o:        init.c definition.h
  27. stick.o:    stick.c definition.h
  28.