home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / time / Makefile < prev    next >
Encoding:
Makefile  |  1994-11-09  |  492 b   |  25 lines

  1. #
  2. # This is Makefile of time lib for Linux.
  3. #
  4.  
  5. TOPDIR=..
  6.  
  7. include $(TOPDIR)/Makeconfig
  8. include $(TOPDIR)/Makerules
  9.  
  10. TIME_FLAGS=-DTZDIR='"/usr/lib/zoneinfo"' -DALTZONE
  11.  
  12. INC_CFLAGS=-I.
  13. BASE_CFLAGS := $(BASE_CFLAGS) $(TIME_FLAGS)
  14.  
  15. DIRS:=
  16.  
  17. SRC1S= bsdtime.c difftime.c strftime.c strptime.c
  18. SRC2S= getitmr.c gettod.c setitmr.c settod.c adjtime.c timelocal.c
  19. SRCS= $(SRC1S) $(SRC2S)
  20. ASMS= $(SRC1S:.c=.s) $(SRC2S:.c=.s)
  21. OBJS= $(SRC1S:.c=.o)
  22. ALIASES= $(SRC2S:.c=.o)
  23.  
  24. include $(TOPDIR)/Maketargets  
  25.