gno/lib/libc/gen/Makefile
gdr 1fd1b2b9dd psignal.c:
Use CR instead of LF in call to write(2).

Makefile:
	Depend on ../../paths.mk

basename.c:
	Include <sys/syslimits.h> due to change in stdio.h
1997-09-05 06:09:50 +00:00

23 lines
507 B
Makefile

#
# Makefile for libc/gen.
#
# $Id: Makefile,v 1.4 1997/09/05 06:09:50 gdr Exp $
#
.INCLUDE: ../../../paths.mk
.INCLUDE: ../../const.mk
OBJ_ASM = crypta.o setjmp.o syslog.o
OBJ_C = basename.o bmem.o compat.o crypt.o dirent.o err.o fnmatch.o fts.o \
getcwd.o getgrent.o getpass.o getpwent.o getttyent.o hostname.o \
oldlog.o popen.o psignal.o pwcache.o scandir.o siglist.o sleep.o \
tty.o utime.o
OBJS = $(OBJ_ASM) $(OBJ_C)
default: $(OBJS)
asm: $(OBJ_ASM)
c: $(OBJ_C)
.INCLUDE: ../rules.mk