1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
XCOMM ------------------------------------------------------------
XCOMM Imakefile for mpsql html help
XCOMM Copyright (C) 1996-1998 Mutiny Bay Software
XCOMM ------------------------------------------------------------
#include "../config.inc"
COPT =
INCS =
DEFS =
LIBS =
SRCS =
OBJS =
HELP_MPSQL = mpsql.html mpsql_cmdline.html mpsql_edit.html mpsql_help.html mpsql_license.html \
mpsql_menu.html mpsql_menu_buffers.html mpsql_menu_edit.html \
mpsql_menu_file.html mpsql_menu_help.html mpsql_menu_options.html \
mpsql_menu_query.html mpsql_msg.html mpsql_output.html mpsql_toolbar.html
IMAGE_MPSQL = about.gif app.gif bar.gif btn_conn.gif btn_exec.gif btn_new.gif \
btn_open.gif btn_print.gif btn_save.gif btn_spool.gif connect.gif \
h_back.gif h_close.gif h_down.gif h_history.gif h_index.gif h_up.gif \
help.gif menu.gif open.gif print.gif save.gif spool.gif
HELP_FILES = pgsql.html sql.html index.html \
cleardbdir.1.html createdb.1.html createuser.1.html destroydb.1.html \
destroyuser.1.html ecpg.1.html initdb.1.html initlocation.1.html \
ipcclean.1.html pg_dump.1.html pg_dumpall.1.html pg_passwd.1.html \
pgintro.1.html postgres.1.html postmaster.1.html psql.1.html \
abort.l.html alter_table.l.html alter_user.l.html begin.l.html \
close.l.html cluster.l.html commit.l.html copy.l.html create_aggregate.l.html \
create_database.l.html create_function.l.html create_index.l.html \
create_language.l.html create_operator.l.html create_rule.l.html \
create_sequence.l.html create_table.l.html create_trigger.l.html \
create_type.l.html create_user.l.html create_version.l.html \
create_view.l.html declare.l.html delete.l.html drop.l.html \
drop_aggregate.l.html drop_database.l.html drop_function.l.html \
drop_index.l.html drop_language.l.html drop_operator.l.html \
drop_rule.l.html drop_sequence.l.html drop_table.l.html drop_trigger.l.html \
drop_type.l.html drop_user.l.html drop_view.l.html end.l.html \
explain.l.html fetch.l.html grant.l.html insert.l.html listen.l.html \
load.l.html lock.l.html move.l.html notify.l.html rename.l.html \
reset.l.html revoke.l.html rollback.l.html select.l.html set.l.html \
show.l.html sql.l.html update.l.html vacuum.l.html
IMAGE_FILES = icon-warning.gif icon-dir.gif icon-executable.gif icon-gif.gif \
icon-history.gif icon-html.gif icon-index.gif icon-other.gif \
icon-plain.gif icon-subindex.gif libhelp-icon.gif libhelp-bar.gif
install::
InstallMultiple($(HELP_FILES) $(HELP_MPSQL),$(HELP_DIR))
InstallMultiple($(IMAGE_FILES) $(IMAGE_MPSQL),$(HELP_DIR))
|