home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume7 / aaakeys / Makefile < prev    next >
Encoding:
Makefile  |  1986-11-30  |  229 b   |  12 lines

  1. ##  Quick Makefile for Ann Arbor XL program
  2.  
  3. CFLAGS=-O
  4. aaxl:    aaxl.c
  5.     $(CC) $(CFLAGS) aaxl.c -o aaxl
  6.  
  7. install:
  8.     @echo cp aaxl and aaxl.l to appropriate places
  9.     cp aaxl /usr/bin
  10.     strip /usr/bin/aaxl
  11.     cp aaxl.l /usr/man/man1/aaxl.1
  12.