home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / samples / sockets / makefile.g95 < prev    next >
Makefile  |  2000-03-03  |  323b  |  20 lines

  1. #
  2. # File:        makefile.g95
  3. # Author:    Julian Smart
  4. # Created:    1993
  5. # Updated:    
  6. # Copyright:    (c) 1993, AIAI, University of Edinburgh
  7. #
  8. # "%W% %G%"
  9. #
  10. # Makefile for server/client example (UNIX).
  11.  
  12. all:
  13.     make -f client.g95 all
  14.     make -f server.g95 all
  15.  
  16. clean:
  17.     make -f client.g95 clean
  18.     make -f server.g95 clean
  19.  
  20.