home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xntp3.zip / adjtime / Makefile.tmpl < prev    next >
Makefile  |  1992-08-29  |  737b  |  31 lines

  1. #########################################################################
  2. ## (c) Copyright 1988, Hewlett-Packard Co.  All Rights Reserved.       ##
  3. ##                                                                     ##
  4. ## Author: Tai Jin, Hewlett-Packard Laboratories.                      ##
  5. #########################################################################
  6.  
  7. ## "@(#)$Header: Makefile.tmpl,v 1.1 92/08/17 13:19:18 src Exp $" ##
  8.  
  9. #
  10. DEFS=
  11. INC=    
  12. LLIBS=    
  13.  
  14.  
  15. CFLAGS=    -O $(DEFS) $(INC)
  16. LDFLAGS= 
  17. LIBS=    $(LLIBS) -lc
  18. OBJ=    adjtime.o adjtimed.o
  19. ALL=    libadjtime.a adjtimed
  20.  
  21. all:    $(ALL)
  22.  
  23. libadjtime.a: adjtime.o
  24.     ar vr libadjtime.a $?
  25.  
  26. adjtimed: adjtimed.o
  27.     $(CC) $(LDFLAGS) -o adjtimed adjtimed.o $(LIBS)
  28.  
  29. clean:
  30.     rm -f *.a *.o adjtimed
  31.