Makefile 463 B

1234567891011121314151617181920
  1. # Copyright (C) 1996 Robert de Bath <robert@mayday.compulink.co.uk>
  2. # This file is part of the Linux-8086 C library and is distributed
  3. # under the GNU Library General Public License.
  4. TOPDIR=../
  5. include $(TOPDIR)Rules.make
  6. CFLAGS+=-I$(TOPDIR)include/linux
  7. LIBC=../libc.a
  8. OBJ=localtime.o gmtime.o asctime.o ctime.o asc_conv.o tm_conv.o mktime.o \
  9. localtime_r.o gmtime_r.o asctime_r.o ctime_r.o
  10. all: $(LIBC)
  11. $(LIBC): $(LIBC)($(OBJ))
  12. clean:
  13. rm -f *.o libc.a