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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
.SUFFIXES: .qof .pl
.pl.qof:
@rm -f $@
qpc -L . -i pce_qpc.qof -NcH $*.pl
LIBQOFS= pw3.qof \
area.qof \
pce_emacs.qof \
emacs_tags.qof \
emacs_extend.qof \
file_item.qof \
find_file.qof \
keybinding.qof \
pce_debug.qof \
pce_edit.qof \
pce_manual.qof \
pce_objects.qof \
pce_portray.qof \
pce_postscript.qof \
pce_server.qof \
pcedraw.qof \
portray_object.qof \
scan_arguments.qof \
pce_selection.qof \
stayup_popup.qof \
twm_resize_button.qof \
twm_geometry_box.qof \
subframe.qof \
pce_renew.qof \
pce_font_item.qof \
pce_cxx_headers.qof \
pce_drag_and_drop.qof \
pce_require.qof \
edit_dialog.qof \
make_dialog.qof \
pce_editable_text.qof \
pce_helper.qof \
pce_help_file.qof \
help_message.qof \
pce_shell.qof \
pce_main.qof \
pce_toc.qof \
pce_tick_box.qof \
pce_image.qof \
pce_prompter.qof \
pce_tagged_connection.qof \
pce_drag_and_drop_dict_item.qof \
dragdict.qof \
dragdrop.qof \
pce_util.qof \
pce_qux.qof \
pce_template.qof \
pce_style_item.qof \
pce_loadcxx.qof \
broadcast.qof \
pce_arrow_item.qof \
pce_colour_item.qof \
pce_config.qof \
pce_configeditor.qof \
pce_graphical_browser.qof \
pce_image_browser.qof \
pce_image_item.qof \
pce_set_item.qof \
english/pce_messages.qof
MANQOFS=man/p_card.qof \
man/p_data.qof \
man/util.qof \
man/v_card.qof \
man/v_class.qof \
man/v_editor.qof \
man/v_error.qof \
man/v_global.qof \
man/v_group.qof \
man/v_hierarchy.qof \
man/v_inherit.qof \
man/v_inspector.qof \
man/v_instance.qof \
man/v_keyword.qof \
man/v_manual.qof \
man/v_module.qof \
man/v_statistics.qof \
man/v_summary.qof \
man/v_search.qof \
man/man_index.qof \
man/v_tile.qof \
man/v_topic.qof \
man/v_visual.qof \
man/behaviour_item.qof \
man/classmap.qof
DIALOGQOFS=dialog/attribute.qof \
dialog/behaviour.qof \
dialog/dialog.qof \
dialog/generate.qof \
dialog/image_item.qof \
dialog/label.qof \
dialog/layout.qof \
dialog/load.qof \
dialog/menuitem.qof \
dialog/meta.qof \
dialog/pretty_print.qof \
dialog/proto.qof \
dialog/util.qof
DRAWQOFS=draw/align.qof \
draw/attribute.qof \
draw/canvas.qof \
draw/draw.qof \
draw/gesture.qof \
draw/menu.qof \
draw/shapes.qof \
draw/undo.qof
EMACSQOFS=emacs/application.qof \
emacs/buffer.qof \
emacs/buffer_menu.qof \
emacs/c_mode.qof \
emacs/cpp_mode.qof \
emacs/fundamental_mode.qof \
emacs/outline_mode.qof \
emacs/gdb.qof \
emacs/hit_list.qof \
emacs/language_mode.qof \
emacs/latex_mode.qof \
emacs/man_mode.qof \
emacs/prolog_mode.qof \
emacs/script_mode.qof \
emacs/server.qof \
emacs/shell.qof \
emacs/text_mode.qof \
emacs/emacs.qof \
emacs/window.qof \
emacs/annotate_mode.qof
all: $(LIBQOFS) $(MANQOFS) $(DIALOGQOFS) $(DRAWQOFS) $(EMACSQOFS)
clean:
rm -f $(LIBQOFS) $(MANQOFS) $(DIALOGQOFS) $(DIALOGLQOFS) \
$(DRAWQOFS) $(EMACSQOFS)
pce_demo.qof:
@rm -f $@
qpc -L . -f demo:../demo -i pce_qpc.qof -Nc $*.pl
|