home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume25 / posix-date / Makefile < prev    next >
Encoding:
Makefile  |  1992-02-29  |  195 b   |  13 lines

  1. # Makefile for PD date and strftime
  2.  
  3. SRCS= date.c strftime.c
  4. OBJS= date.o strftime.o
  5. DOCS= date.1 strftime.3
  6.  
  7. date: $(OBJS)
  8.     $(CC) $(CFLAGS) $(OBJS) -o $@
  9.  
  10. date.o: date.c
  11.  
  12. strftime.o: strftime.c
  13.