home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 3 / 3294 / Makefile < prev    next >
Encoding:
Makefile  |  1991-05-07  |  223 b   |  16 lines

  1.  
  2. INSTBIN=/usr/local/etc/upsd
  3.  
  4. upsd: upsd.c
  5.     cc -O -s -o upsd upsd.c -lc_s
  6.     mcs -d upsd
  7.  
  8. install: upsd
  9.     -mv -f $(INSTBIN) $(INSTBIN)-
  10.     rm -f $(INSTBIN)-
  11.     cp upsd $(INSTBIN)
  12.     chmod 100 $(INSTBIN)
  13.  
  14. clean:
  15.     rm -f *.o upsd core
  16.