13 lines
178 B
Makefile
Executable file
13 lines
178 B
Makefile
Executable file
# Makefile for lib/regex.
|
|
|
|
CFLAGS = -O -D_MINIX -D_POSIX_SOURCE
|
|
|
|
LIBRARIES = libc
|
|
|
|
libc_OBJECTS = \
|
|
regcomp.o \
|
|
regerror.o \
|
|
regexec.o \
|
|
regfree.o \
|
|
|
|
include ../Makefile.inc
|