blob: c05933f3da5b6270cad59bf174a8f929e204edd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright (C) 1996 Robert de Bath <robert@debath.thenet.co.uk>
# This file is part of the Linux-8086 C library and is distributed
# under the GNU Library General Public License.
TOPDIR=../
include $(TOPDIR)Rules.make
LIBC=../libc.a
#__getgrent.c grent.c getgrnam.c getgrgid.c fgetgrent.c initgroups.c: config-grp.h
OBJ=__getpwent.o pwent.o getpwnam.o getpwuid.o putpwent.o getpw.o fgetpwent.o \
__getgrent.o grent.o getgrnam.o getgrgid.o fgetgrent.o initgroups.o \
utent.o
all: $(LIBC)($(OBJ))
$(LIBC): $(OBJ)
clean:
rm -f *.o libc.a
|