diff options
| author | Bruce Momjian | 1999-06-05 19:09:48 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1999-06-05 19:09:48 +0000 |
| commit | 27b8143944dc0585597bdaa3ae5e5b49a4760def (patch) | |
| tree | fb576673bee591564b1dedd300cd0732e341388c /contrib/string/Makefile | |
| parent | 977108e8d9ae68cac5ec6f2908e03bd7b46fdbc7 (diff) | |
Hi,
I have updated my contrib code for version 6.5. In the attachment you will
find the directories array, datetime, miscutil, string, tools and userlocks
which replace the corresponding directories under contrib.
In contrib/tools you will find some developement scripts which I use while
hacking the sources. I hope they will be useful for some other people.
I have also added a contrib/Makefile which tries to compile and install all
the contribs. Unfortunately many of them don't have a Makefile or don't
compile cleanly.
--
Massimo Dal Zotto
Diffstat (limited to 'contrib/string/Makefile')
| -rw-r--r-- | contrib/string/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/contrib/string/Makefile b/contrib/string/Makefile index ea42cfa91b7..879fd2387f9 100644 --- a/contrib/string/Makefile +++ b/contrib/string/Makefile @@ -1,6 +1,7 @@ #------------------------------------------------------------------------- # # Makefile -- +# # Makefile for string I/O module. # #------------------------------------------------------------------------- @@ -19,6 +20,8 @@ CFLAGS += $(INCLUDE_OPT) $(CFLAGS_SL) MODNAME = string_io +SQLDEFS = $(MODNAME).sql + MODULE = $(MODNAME)$(DLSUFFIX) MODDIR = $(LIBDIR)/modules @@ -29,12 +32,12 @@ all: module sql module: $(MODULE) -sql: $(MODNAME).sql +sql: $(SQLDEFS) -install: $(MODULE) $(MODDIR) $(SQLDIR) +install: $(MODULE) $(SQLDEFS) $(MODDIR) $(SQLDIR) cp -p $(MODULE) $(MODDIR)/ strip $(MODDIR)/$(MODULE) - cp -p $(MODNAME).sql $(SQLDIR)/ + cp -p $(SQLDEFS) $(SQLDIR)/ $(MODDIR): mkdir -p $@ |
