mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +00:00
6848d48a2e
getting too many files
26 lines
542 B
Makefile
26 lines
542 B
Makefile
#
|
|
# Makefile for libc/gen.
|
|
#
|
|
# $Id: Makefile,v 1.6 1997/10/03 04:44:14 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)
|
|
|
|
CFLAGS += -O78
|
|
|
|
build .PHONY: ../libc
|
|
obj: $(OBJS)
|
|
asm: $(OBJ_ASM)
|
|
c: $(OBJ_C)
|
|
|
|
.INCLUDE: ../rules.mk
|