mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +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)
20 lines
430 B
Makefile
20 lines
430 B
Makefile
#
|
|
# $Id: Makefile,v 1.4 1998/02/19 01:07:27 gdr-ftp Exp $
|
|
#
|
|
|
|
LIB = c
|
|
LIBPFX = $(OBJ_DIR)../
|
|
NO_REZ = true
|
|
SRCS = regcomp.c regerror.c regexec.c regfree.c
|
|
|
|
# I've not bothered to determine what POSIX_MISTAKE means, but 4.4BSD
|
|
# uses it.
|
|
CFLAGS += -v -r -DPOSIX_MISTAKE
|
|
|
|
.INCLUDE: /src/gno/lib/lib.mk
|
|
|
|
regcomp.o: cclass.h cname.h regex2.h utils.h
|
|
regerror.o: utils.h
|
|
regexec.o: engine.c regex2.h utils.h
|
|
regfree.o: regex2.h utils.h
|