home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / x / volume13 / xcal / part02 / scott_brim / makefile next >
Makefile  |  1991-05-12  |  242b  |  17 lines

  1. #
  2. #    Rough makefile
  3. #
  4. CC = gcc
  5. CFLAGS = -g -O
  6.  
  7. xcshow:    xcshow.c
  8.     $(CC) $(CFLAGS) -o xcshow xcshow.c
  9.  
  10. install:    xcshow
  11.     install -s -m 755 xcshow /usr/local/bin
  12.     install -c -m 755 vixc.sh /usr/local/bin/vixc
  13.  
  14. clean:
  15.     -rm -f *.o xcshow errs core
  16.  
  17.