source: trunk/SL/MASKS/Makefile

Last change on this file was 19654, checked in by westram, 2 weeks ago
  • reintegrates 'macros' into 'trunk'
    • improves program termination (#867)
      • introduces MacroExitor classes
        • handles confirmation (to quit)
        • waits for macros to finish, then exits w/o confirmation
        • provides specialized termination for different programs via derived classes
          • has been implemented for "normal" arb and merge-tool.
      • introduces ARB_disconnect_from_db
        • generalizes code to terminate all interconnections between GUI, database and macro-ability
        • allow to install atdisconnect-callbacks
          • usable by modules operating on a database; allow to inform module that database will vanish.
        • now used by all arb applications to disconnect from all their database(s), except the properties.
    • fixes some broken behavior
      • merge-tool
        • crashed when quitting via macro
        • wrong restarts, if originally started with arguments,
      • importer
        • failed to record/playback macros
        • crashed in modules operating on the temporary import database
      • database browser
        • crashed on disappearing database
  • adds: log:branches/macros@19620:19653
File size: 2.9 KB
Line 
1# for variables passed from parent makefile see ../../SOURCE_TOOLS/parent_make.txt
2
3.SUFFIXES: .o .cxx .depend
4
5OBJECTS=$(subst .cxx,.o,$(wildcard *.cxx))
6
7$(MAIN): $(OBJECTS)
8        $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS)
9
10.cxx.o:
11        $(A_CXX) $(cflags) $(cxxflags) -c $< $(CXX_INCLUDES) $(POST_COMPILE) $<
12
13clean:
14        rm -f $(OBJECTS) *.o *.a
15
16DEPENDS = $(OBJECTS:.o=.depend)
17depends: $(DEPENDS)
18        @cat $(DEPENDS) | grep -v '^#' >>Makefile
19        @rm $(DEPENDS)
20$(DEPENDS): depend.init
21depend.init:
22        $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
23.c.depend:
24        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
25.cxx.depend:
26        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
27
28# DO NOT DELETE
29
30# Do not add dependencies manually - use 'make depend' in $ARBHOME
31# For formatting issues see SOURCE_TOOLS/fix_depends.pl (from SL)
32
33hotkeys.o: hotkeys.hxx
34hotkeys.o: $(ARBHOME)/INCLUDE/arbtools.h
35hotkeys.o: $(ARBHOME)/INCLUDE/cxxforward.h
36hotkeys.o: $(ARBHOME)/INCLUDE/gccver.h
37
38input_mask.o: hotkeys.hxx
39input_mask.o: input_mask.hxx
40input_mask.o: input_mask_internal.hxx
41input_mask.o: $(ARBHOME)/INCLUDE/ad_cb.h
42input_mask.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
43input_mask.o: $(ARBHOME)/INCLUDE/ad_prot.h
44input_mask.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
45input_mask.o: $(ARBHOME)/INCLUDE/app.hxx
46input_mask.o: $(ARBHOME)/INCLUDE/arb_assert.h
47input_mask.o: $(ARBHOME)/INCLUDE/arb_core.h
48input_mask.o: $(ARBHOME)/INCLUDE/arb_error.h
49input_mask.o: $(ARBHOME)/INCLUDE/arb_file.h
50input_mask.o: $(ARBHOME)/INCLUDE/arb_mem.h
51input_mask.o: $(ARBHOME)/INCLUDE/arb_msg.h
52input_mask.o: $(ARBHOME)/INCLUDE/arb_str.h
53input_mask.o: $(ARBHOME)/INCLUDE/arb_string.h
54input_mask.o: $(ARBHOME)/INCLUDE/arbdb.h
55input_mask.o: $(ARBHOME)/INCLUDE/arbdb_base.h
56input_mask.o: $(ARBHOME)/INCLUDE/arbdbt.h
57input_mask.o: $(ARBHOME)/INCLUDE/arbtools.h
58input_mask.o: $(ARBHOME)/INCLUDE/attributes.h
59input_mask.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
60input_mask.o: $(ARBHOME)/INCLUDE/aw_base.hxx
61input_mask.o: $(ARBHOME)/INCLUDE/aw_edit.hxx
62input_mask.o: $(ARBHOME)/INCLUDE/aw_file.hxx
63input_mask.o: $(ARBHOME)/INCLUDE/aw_inotify.hxx
64input_mask.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
65input_mask.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
66input_mask.o: $(ARBHOME)/INCLUDE/aw_question.hxx
67input_mask.o: $(ARBHOME)/INCLUDE/aw_root.hxx
68input_mask.o: $(ARBHOME)/INCLUDE/aw_window.hxx
69input_mask.o: $(ARBHOME)/INCLUDE/cb.h
70input_mask.o: $(ARBHOME)/INCLUDE/cb_base.h
71input_mask.o: $(ARBHOME)/INCLUDE/cbtypes.h
72input_mask.o: $(ARBHOME)/INCLUDE/cxxforward.h
73input_mask.o: $(ARBHOME)/INCLUDE/downcast.h
74input_mask.o: $(ARBHOME)/INCLUDE/dupstr.h
75input_mask.o: $(ARBHOME)/INCLUDE/gb_aci.h
76input_mask.o: $(ARBHOME)/INCLUDE/gccver.h
77input_mask.o: $(ARBHOME)/INCLUDE/smartptr.h
78input_mask.o: $(ARBHOME)/INCLUDE/static_assert.h
79input_mask.o: $(ARBHOME)/INCLUDE/stringize.h
80input_mask.o: $(ARBHOME)/INCLUDE/test_global.h
81input_mask.o: $(ARBHOME)/INCLUDE/ttypes.h
82input_mask.o: $(ARBHOME)/INCLUDE/www.hxx
Note: See TracBrowser for help on using the repository browser.