diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-10-17 21:23:48 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-10-17 21:23:48 +0000 |
commit | 3b81d48f27e024a113ec63bdfa0b762808d5291c (patch) | |
tree | fea6fb870a61065463da3ff885b8729abfc88018 /libc/misc/Makefile | |
parent | 1dce8cb9fe9f6f54b5c9a26115541879b2f8ff25 (diff) |
Fix up ctype.h
Diffstat (limited to 'libc/misc/Makefile')
-rw-r--r-- | libc/misc/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libc/misc/Makefile b/libc/misc/Makefile index 30c92fcf8..eb3dfd84d 100644 --- a/libc/misc/Makefile +++ b/libc/misc/Makefile @@ -21,7 +21,11 @@ # respective copyright holders. -DIRS = assert crypt ctype fnmatch glob internals lsearch regex shm time +DIRS = assert crypt fnmatch glob internals lsearch regex shm time + +ifeq ($(USE_CTYPE_C_FUNCTIONS),true) + DIRS+=ctype +endif all: libc.a |