提交 30f737f6 编写于 作者: M Marc G. Fournier

Totally forgot to add these files...

上级 067cb82d
Wed Feb 11 10:58:13 CET 1998
- Added '-d' option to turn on debugging.
- Added version number to ecpg.
- Made libecpg a shared library.
- All files are now installed by 'make install'.
- Added man page.
Thu Feb 12 14:45:07 CET 1998
- Changed parser to correctly handle local variables.
#-------------------------------------------------------------------------
#
# Makefile
# Makefile for doc directory to install man pages
#
#-------------------------------------------------------------------------
SRCDIR=../../..
include $(SRCDIR)/Makefile.global
all: ecpg.texinfo
-makeinfo ecpg.texinfo
install: install-man install-info
install-man:
-mkdir -p $(POSTMANDIR)
-mkdir $(POSTMANDIR)/man1
#-mkdir $(POSTMANDIR)/man3
#-mkdir $(POSTMANDIR)/man5
#-mkdir $(POSTMANDIR)/manl
install -m644 *.1* $(POSTMANDIR)/man1
#install -m644 *.3* $(POSTMANDIR)/man3
#install -m644 *.5* $(POSTMANDIR)/man5
#install -m644 *.l* $(POSTMANDIR)/manl
install-info: ecpg.info
install -m 755 -d $(DESTDIR)$(POSTGRESDIR)/info
install -m 644 ecpg.info $(DESTDIR)$(POSTGRESDIR)/info; \
#if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then\
# install-info --infodir=$(infodir) ecpg.info; \
#else true; \
#fi
clean:
rm -f ecpg.info ecpg.?? ecpg.??? missfont.log *~ core
distclean: clean
rm -f Makefile
此差异已折叠。
create table meskes(name char8, born int4);
insert into meskes(name, born) values ('Petra', 19661202);
insert into meskes(name, born) values ('Michael', 19660117);
insert into meskes(name, born) values ('Carsten', 19910103);
insert into meskes(name, born) values ('Marc', 19930907);
insert into meskes(name, born) values ('Chris', 19970923);
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册