summaryrefslogtreecommitdiff
path: root/libc/getent/Makefile
blob: d2623bc7269d2335272b23f2af4b3da3f9c7c306 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Copyright (C) 1996 Nat Friedman <ndf@aleph1.mit.edu>
# This file is part of the Linux-8086 C library and is distributed
# under the GNU Library General Public License.

ifeq ($(PLATFORM),i386-ELKS)
CFLAGS=$(ARCH) $(WALL) $(CCFLAGS) $(DEFS)
else
CFLAGS=$(ARCH) -ansi $(CCFLAGS) $(DEFS)
endif

PSRC=__getpwent.c pwent.c getpwnam.c getpwuid.c putpwent.c getpw.c fgetpwent.c
GSRC=__getgrent.c grent.c getgrnam.c getgrgid.c fgetgrent.c initgroups.c \
	config-grp.h
USRC=utent.c

POBJ=__getpwent.o pwent.o getpwnam.o getpwuid.o putpwent.o getpw.o fgetpwent.o
GOBJ=__getgrent.o grent.o getgrnam.o getgrgid.o fgetgrent.o initgroups.o 
UOBJ=utent.o

ifeq ($(LIB_OS),ELKS)

OBJ=$(POBJ) $(GOBJ) $(UOBJ)

all: $(LIBC)($(OBJ))
	@$(RM) $(OBJ)

$(LIBC)($(GOBJ)): config-grp.h

else
all:
	@:
endif

clean:
	rm -f *.o libc.a