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 54 55 56 57 58
|
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_search.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 index.html
IMAGE_MPSQL = about.gif app.gif bar.gif btn_conn.gif btn_exec.gif btn_cancel.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 find.gif\
help.gif menu.gif open.gif print.gif save.gif spool.gif tabs.gif replace.gif
HELP_FILES = app-createdb.html app-createuser.html app-destroydb.html app-destroyuser.html \
app-initdb.html app-initlocation.html app-pg-dump.html app-pg-dumpall.html \
app-psql.html arrays.html biblio.html datatype.html datatype1243.html \
datatype1275.html datatype1369.html datatype806.html datatype833.html datatype897.html \
environ.html functions.html functions2021.html functions2145.html functions2230.html \
functions2446.html inherit.html intro.html intro149.html intro159.html intro228.html \
intro259.html intro286.html intro317.html intro56.html keys.html manage.html manage387.html \
manage412.html manage453.html operators.html operators1559.html operators1630.html \
operators1700.html operators1810.html operators1869.html operators1923.html pgaccess.html \
preface.html psql.html query-ug.html query-ug2863.html query-ug2887.html query-ug2896.html \
query-ug2913.html query-ug2920.html query-ug2935.html query-ug2939.html query-ug2946.html \
sql-abort.html sql-altertable.html sql-alteruser.html sql-beginwork.html sql-close.html \
sql-cluster.html sql-commands.html sql-commit.html sql-copy.html sql-createaggregate.html \
sql-createdatabase.html sql-createfunction.html sql-createindex.html sql-createlanguage.html \
sql-createoperator.html sql-createrule.html sql-createsequence.html sql-createtable.html \
sql-createtableas.html sql-createtrigger.html sql-createtype.html sql-createuser.html \
sql-createview.html sql-declare.html sql-delete.html sql-dropaggregate.html \
sql-dropdatabase.html sql-dropfunction.html sql-dropindex.html sql-droplanguage.html \
sql-dropoperator.html sql-droprule.html sql-dropsequence.html sql-droptable.html \
sql-droptrigger.html sql-droptype.html sql-dropuser.html sql-dropview.html sql-explain.html \
sql-fetch.html sql-grant.html sql-insert.html sql-listen.html sql-load.html sql-lock.html \
sql-move.html sql-notify.html sql-reset.html sql-revoke.html sql-rollback.html sql-select.html \
sql-selectinto.html sql-set.html sql-show.html sql-unlisten.html sql-update.html sql-vacuum-1.html \
storage.html syntax.html typeconv.html typeconv2564.html typeconv2629.html typeconv2683.html \
typeconv2704.html user.html utilities.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))
|