mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-12-21 23:29:16 +00:00
79cc150685
- specify files via SRCS vice OBJS. This eliminates an extraneous ".o" in the final OBJS value. - don't attempt to attach a rez fork (leave it for the upper level makefile)
19 lines
456 B
Makefile
19 lines
456 B
Makefile
#
|
|
# Makefile for libc/gen.
|
|
#
|
|
# $Id: Makefile,v 1.9 1998/02/19 01:07:21 gdr-ftp Exp $
|
|
#
|
|
|
|
LIB = c
|
|
LIBPFX = $(OBJ_DIR)../
|
|
NO_REZ = true
|
|
SRC_ASM = setjmp.asm syslog.asm
|
|
SRC_C = basename.c bmem.c compat.c dirent.c err.c fnmatch.c fts.c \
|
|
getcwd.c getgrent.c getpass.c getpwent.c getttyent.c hostname.c \
|
|
oldlog.c popen.c psignal.c pwcache.c scandir.c siglist.c sleep.c \
|
|
tty.c uname.c utime.c
|
|
|
|
SRCS = $(SRC_ASM) $(SRC_C)
|
|
|
|
.INCLUDE: /src/gno/lib/lib.mk
|