Makefile 468 B

12345678910111213141516171819
  1. # Copyright (C) 1996 Robert de Bath <robert@debath.thenet.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. LIBC=$(TOPDIR)libc.a
  7. OBJ=__getpwent.o pwent.o getpwnam.o getpwuid.o putpwent.o getpw.o fgetpwent.o \
  8. __getgrent.o grent.o getgrnam.o getgrgid.o fgetgrent.o initgroups.o \
  9. utent.o
  10. all: $(LIBC)($(OBJ))
  11. $(LIBC): $(OBJ)
  12. clean:
  13. rm -f *.o libc.a