URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [uclinux/] [uC-libc/] [getent/] [Makefile] - Rev 1775
Go to most recent revision | Compare with Previous | Blame | View Log
# 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.
LIBC=../libc.a
CC=or32-elf-gcc
AR=or32-elf-ar
RANLIB=or32-elf-ranlib
CCFLAGS= -O2 -msoft-float -I../include
CFLAGS=$(ARCH) -ansi $(CCFLAGS) $(DEFS)
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
OBJ=$(POBJ) $(GOBJ) $(UOBJ)
all: $(LIBC)($(OBJ))
@$(RM) $(OBJ)
$(LIBC)($(GOBJ)): config-grp.h
clean:
rm -f *.o libc.a
Go to most recent revision | Compare with Previous | Blame | View Log