diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-02-02 15:02:49 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-02-02 15:02:49 +0100 |
commit | b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73 (patch) | |
tree | 4361edef0d42d5bf5ac984ef72b4fac35426eae7 /nx-X11/lib/regex | |
parent | 0d5a83e986f39982c0924652a3662e60b1f23162 (diff) | |
download | nx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.tar.gz nx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.tar.bz2 nx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.zip |
massive reduction of unneeded files
Diffstat (limited to 'nx-X11/lib/regex')
-rw-r--r-- | nx-X11/lib/regex/Imakefile | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/nx-X11/lib/regex/Imakefile b/nx-X11/lib/regex/Imakefile deleted file mode 100644 index 434e8f645..000000000 --- a/nx-X11/lib/regex/Imakefile +++ /dev/null @@ -1,53 +0,0 @@ -XCOMM $XFree86$ - -#define DoNormalLib YES -#define DoSharedLib NO -#define DoExtraLib NO -#define DoDebugLib NO -#define DoProfileLib NO -#define HasSharedData NO -#define LibName regex -#define LibHeaders NO -#define LibInstall NO -#define LibInstallBuild YES - -SRCS = regcomp.c regerror.c regexec.c regfree.c engine.c -OBJS = regcomp.o regerror.o regexec.o regfree.o -IHEADERS = regcomp.ih regerror.ih regexec.ih regfree.ih engine.ih regex.h -HEADERS = regex.h - -DEFINES = -DPOSIX_MISTAKE - -REGEXSOURCEDIR = $(TOP)/extras/regex - -INCLUDES = -I. -I$(REGEXSOURCEDIR) - -#include <Library.tmpl> - -LinkSourceFile(regcomp.c,$(REGEXSOURCEDIR)) -LinkSourceFile(regerror.c,$(REGEXSOURCEDIR)) -LinkSourceFile(regexec.c,$(REGEXSOURCEDIR)) -LinkSourceFile(regfree.c,$(REGEXSOURCEDIR)) -LinkSourceFile(engine.c,$(REGEXSOURCEDIR)) - -.SUFFIXES: .ih .h -.c.ih: - RemoveFile($@) - $(SHELL) $(REGEXSOURCEDIR)/mkh -p $< >$@ - -REGEXHSRC = $(REGEXSOURCEDIR)/regex2.h $(SRCS) -regex.h: $(REGEXHSRC) - RemoveFile(regex.h) - $(SHELL) $(REGEXSOURCEDIR)/mkh -i _REGEX_H_ $(REGEXHSRC) > regex.h - -$(OBJS): $(IHEADERS) - -includes:: $(IHEADERS) - -clean:: - RemoveFiles($(IHEADERS)) - -BuildIncludesTop($(HEADERS)) - -DependTarget() - |