home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume11 / syslog / Makefile next >
Encoding:
Makefile  |  1987-08-27  |  185 b   |  10 lines

  1. ## syslog routine makefile
  2. CFLAGS=-O
  3. all:    syslog.c
  4.     $(CC) $(CFLAGS) -c syslog.c
  5.     ar c libsyslog.a syslog.o
  6.     @rm -f syslog.o
  7.  
  8. install:    all
  9.     @echo install according to local conventions.
  10.