home *** CD-ROM | disk | FTP | other *** search
/ ftp.ee.pdx.edu / 2014.02.ftp.ee.pdx.edu.tar / ftp.ee.pdx.edu / oss / cvs-2004 / psang / Makefile,v < prev    next >
Text File  |  2003-07-07  |  2KB  |  79 lines

  1. head     1.1;
  2. branch   1.1.1;
  3. access   ;
  4. symbols  Initial:1.1.1.1 psang:1.1.1;
  5. locks    ; strict;
  6. comment  @# @;
  7.  
  8.  
  9. 1.1
  10. date     2003.07.07.19.32.23;  author jhoffman;  state Exp;
  11. branches 1.1.1.1;
  12. next     ;
  13.  
  14. 1.1.1.1
  15. date     2003.07.07.19.32.23;  author jhoffman;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24.  
  25. 1.1
  26. log
  27. @Initial revision
  28. @
  29. text
  30. @#  Makefile for xtron v1.1
  31. #  Copyright (C) 1995 Rhett D. Jacobs <rhett@@hotel.canberra.edu.au>
  32. #  This program is free software; you can redistribute it and/or modify
  33. #  it under the terms of the GNU General Public License as published by
  34. #  the Free Software Foundation; either version 1, or (at your option)
  35. #  any later version.
  36. #  This program is distributed in the hope that it will be useful,
  37. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  38. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  39. #  GNU General Public License for more details.
  40. #  You should have received a copy of the GNU General Public License
  41. #  along with this program; if not, write to the Free Software
  42. #  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  43. #
  44. #  Last Modified: 16/4/95
  45. #
  46. CC=        gcc
  47. CFLAGS=        -O4 -Wall
  48. INCLUDES=    -I/usr/X11R6/include/X11 -I/usr/include
  49. LIBS=        -L/usr/X11R6/lib
  50. LDLIBS=        -lXpm -lX11
  51. DEPEND=        makedepend
  52. OBJS=        wintype.o xtron.o main.o xpm2pixmap.o resource.o
  53. SRCS=        wintype.c xtron.c main.c xpm2pixmap.c resource.c
  54. HEADERS=    wintype.h xtron.h main.h xpm2pixmap.h resource.h
  55.  
  56. all:        xtron
  57.  
  58. xtron:        $(OBJS)
  59.         $(CC) $(OBJS) $(LIBS) $(LDLIBS) -o $@@
  60.  
  61. clean:
  62.         -rm $(OBJS) *~ *flc xtron
  63.  
  64. .c.o:
  65.         $(CC) $(CFLAGS) $(DEFINES) $(INCLUDES) -c -o $*.o $*.c
  66. @
  67.  
  68.  
  69. 1.1.1.1
  70. log
  71. @Protocol for Simple Arcade-Style Network Gaming
  72. @
  73. text
  74. @@
  75.