source: branches/tree/ARB_GDE/Makefile

Last change on this file was 18732, checked in by westram, 4 years ago
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 11.3 KB
RevLine 
[10954]1# for variables passed from parent makefile see ../SOURCE_TOOLS/parent_make.txt
[1617]2.SUFFIXES: .o .cxx .depend
3
[18732]4SOURCES=$(wildcard *.cxx)
5OBJECTS=$(subst .cxx,.o,$(SOURCES))
[1617]6
[18732]7$(MAIN): $(OBJECTS)
8        $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS)
[1617]9.cxx.o:
[13443]10        $(A_CXX) $(cflags) $(cxxflags) -c $< $(CXX_INCLUDES) $(POST_COMPILE) $<
[1617]11
[18732]12GDE_proto.h: $(SOURCES) Makefile
[6280]13        $(MAKE) proto
[5316]14
[6280]15proto:
[18732]16        ../AISC_MKPTPS/aisc_mkpt -P -G -E -w GDE_proto.h $(SOURCES) > GDE_proto.h.tmp
[5069]17        ../SOURCE_TOOLS/mv_if_diff GDE_proto.h.tmp GDE_proto.h
18
[4635]19clean:
[18732]20        rm -f $(OBJECTS) *.a
[4635]21
[18732]22DEPENDS = $(OBJECTS:.o=.depend)
[1617]23depends: $(DEPENDS)
24        @cat $(DEPENDS) | grep -v '^#' >>Makefile
25        @rm $(DEPENDS)
26$(DEPENDS): depend.init
27depend.init:
28        $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
29.c.depend:
30        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
31.cxx.depend:
32        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
33
[2]34# DO NOT DELETE THIS LINE -- make depend depends on it.
35
[2338]36# Do not add dependencies manually - use 'make depend' in $ARBHOME
[9575]37# For formatting issues see SOURCE_TOOLS/fix_depends.pl (from main)
[1617]38
[2338]39GDE.o: gde.hxx
[5031]40GDE.o: GDE_awars.h
[2338]41GDE.o: GDE_def.h
42GDE.o: GDE_extglob.h
43GDE.o: GDE_menu.h
[5316]44GDE.o: GDE_proto.h
[2338]45GDE.o: $(ARBHOME)/INCLUDE/ad_prot.h
46GDE.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
47GDE.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]48GDE.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]49GDE.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]50GDE.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]51GDE.o: $(ARBHOME)/INCLUDE/arb_msg.h
[10842]52GDE.o: $(ARBHOME)/INCLUDE/arb_str.h
[17724]53GDE.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7183]54GDE.o: $(ARBHOME)/INCLUDE/arb_string.h
[1617]55GDE.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]56GDE.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[2315]57GDE.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]58GDE.o: $(ARBHOME)/INCLUDE/arbtools.h
[5125]59GDE.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]60GDE.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
[12138]61GDE.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
[6868]62GDE.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[7121]63GDE.o: $(ARBHOME)/INCLUDE/aw_file.hxx
[3554]64GDE.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]65GDE.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[83]66GDE.o: $(ARBHOME)/INCLUDE/aw_root.hxx
[12773]67GDE.o: $(ARBHOME)/INCLUDE/aw_scalar.hxx
68GDE.o: $(ARBHOME)/INCLUDE/aw_select.hxx
[83]69GDE.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[13704]70GDE.o: $(ARBHOME)/INCLUDE/awt_config_manager.hxx
[6280]71GDE.o: $(ARBHOME)/INCLUDE/awt_filter.hxx
[3902]72GDE.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
[6868]73GDE.o: $(ARBHOME)/INCLUDE/cb.h
[11034]74GDE.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]75GDE.o: $(ARBHOME)/INCLUDE/cbtypes.h
[17724]76GDE.o: $(ARBHOME)/INCLUDE/ConfigMapping.h
[9521]77GDE.o: $(ARBHOME)/INCLUDE/cxxforward.h
[10563]78GDE.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]79GDE.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]80GDE.o: $(ARBHOME)/INCLUDE/gccver.h
[6277]81GDE.o: $(ARBHOME)/INCLUDE/smartptr.h
[10212]82GDE.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]83GDE.o: $(ARBHOME)/INCLUDE/test_global.h
[10212]84GDE.o: $(ARBHOME)/INCLUDE/ttypes.h
[1617]85
[2338]86GDE_arbdb_io.o: gde.hxx
87GDE_arbdb_io.o: GDE_def.h
88GDE_arbdb_io.o: GDE_extglob.h
89GDE_arbdb_io.o: GDE_menu.h
[5316]90GDE_arbdb_io.o: GDE_proto.h
[2338]91GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/ad_prot.h
92GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
[6280]93GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/AP_filter.hxx
[2338]94GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]95GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]96GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/arb_error.h
[17534]97GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
[15176]98GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]99GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/arb_msg.h
[7186]100GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/arb_progress.h
[7183]101GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/arb_string.h
[2338]102GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]103GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[2338]104GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]105GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/arbtools.h
[5125]106GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/attributes.h
[7916]107GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
[6868]108GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/aw_base.hxx
109GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[4303]110GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/AW_rename.hxx
[14435]111GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/cb.h
112GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/cb_base.h
113GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/cbtypes.h
[9521]114GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/cxxforward.h
[10563]115GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]116GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]117GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/gccver.h
[6277]118GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/smartptr.h
[10563]119GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]120GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/test_global.h
[14435]121GDE_arbdb_io.o: $(ARBHOME)/INCLUDE/ttypes.h
[2338]122
123GDE_event.o: gde.hxx
[5031]124GDE_event.o: GDE_awars.h
[2338]125GDE_event.o: GDE_def.h
126GDE_event.o: GDE_extglob.h
127GDE_event.o: GDE_menu.h
[5316]128GDE_event.o: GDE_proto.h
[2338]129GDE_event.o: $(ARBHOME)/INCLUDE/ad_prot.h
130GDE_event.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
[6280]131GDE_event.o: $(ARBHOME)/INCLUDE/AP_filter.hxx
[2338]132GDE_event.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]133GDE_event.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]134GDE_event.o: $(ARBHOME)/INCLUDE/arb_error.h
[17534]135GDE_event.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
[15176]136GDE_event.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]137GDE_event.o: $(ARBHOME)/INCLUDE/arb_msg.h
[7186]138GDE_event.o: $(ARBHOME)/INCLUDE/arb_progress.h
[17178]139GDE_event.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
[7183]140GDE_event.o: $(ARBHOME)/INCLUDE/arb_string.h
[887]141GDE_event.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]142GDE_event.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[83]143GDE_event.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]144GDE_event.o: $(ARBHOME)/INCLUDE/arbtools.h
[5125]145GDE_event.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]146GDE_event.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
147GDE_event.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[7121]148GDE_event.o: $(ARBHOME)/INCLUDE/aw_file.hxx
[3554]149GDE_event.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
[6868]150GDE_event.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[8355]151GDE_event.o: $(ARBHOME)/INCLUDE/aw_question.hxx
[83]152GDE_event.o: $(ARBHOME)/INCLUDE/aw_root.hxx
153GDE_event.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[6280]154GDE_event.o: $(ARBHOME)/INCLUDE/awt_filter.hxx
[6868]155GDE_event.o: $(ARBHOME)/INCLUDE/cb.h
[11034]156GDE_event.o: $(ARBHOME)/INCLUDE/cb_base.h
[10212]157GDE_event.o: $(ARBHOME)/INCLUDE/cbtypes.h
[9521]158GDE_event.o: $(ARBHOME)/INCLUDE/cxxforward.h
[10563]159GDE_event.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]160GDE_event.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]161GDE_event.o: $(ARBHOME)/INCLUDE/gccver.h
[6277]162GDE_event.o: $(ARBHOME)/INCLUDE/smartptr.h
[10212]163GDE_event.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]164GDE_event.o: $(ARBHOME)/INCLUDE/test_global.h
[12834]165GDE_event.o: $(ARBHOME)/INCLUDE/test_unit.h
[10212]166GDE_event.o: $(ARBHOME)/INCLUDE/ttypes.h
[1617]167
[2338]168GDE_FileIO.o: gde.hxx
169GDE_FileIO.o: GDE_def.h
170GDE_FileIO.o: GDE_extglob.h
171GDE_FileIO.o: GDE_menu.h
[5316]172GDE_FileIO.o: GDE_proto.h
[2338]173GDE_FileIO.o: $(ARBHOME)/INCLUDE/ad_prot.h
174GDE_FileIO.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
175GDE_FileIO.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]176GDE_FileIO.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]177GDE_FileIO.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]178GDE_FileIO.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]179GDE_FileIO.o: $(ARBHOME)/INCLUDE/arb_msg.h
180GDE_FileIO.o: $(ARBHOME)/INCLUDE/arb_string.h
[2338]181GDE_FileIO.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]182GDE_FileIO.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[2338]183GDE_FileIO.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]184GDE_FileIO.o: $(ARBHOME)/INCLUDE/arbtools.h
[5125]185GDE_FileIO.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]186GDE_FileIO.o: $(ARBHOME)/INCLUDE/aw_base.hxx
187GDE_FileIO.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
[14435]188GDE_FileIO.o: $(ARBHOME)/INCLUDE/cb.h
189GDE_FileIO.o: $(ARBHOME)/INCLUDE/cb_base.h
190GDE_FileIO.o: $(ARBHOME)/INCLUDE/cbtypes.h
[9521]191GDE_FileIO.o: $(ARBHOME)/INCLUDE/cxxforward.h
[10563]192GDE_FileIO.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]193GDE_FileIO.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]194GDE_FileIO.o: $(ARBHOME)/INCLUDE/gccver.h
[6277]195GDE_FileIO.o: $(ARBHOME)/INCLUDE/smartptr.h
[10563]196GDE_FileIO.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]197GDE_FileIO.o: $(ARBHOME)/INCLUDE/test_global.h
[14435]198GDE_FileIO.o: $(ARBHOME)/INCLUDE/ttypes.h
[1617]199
[2338]200GDE_Genbank.o: gde.hxx
201GDE_Genbank.o: GDE_def.h
202GDE_Genbank.o: GDE_extglob.h
203GDE_Genbank.o: GDE_menu.h
[5316]204GDE_Genbank.o: GDE_proto.h
[2338]205GDE_Genbank.o: $(ARBHOME)/INCLUDE/ad_prot.h
[6280]206GDE_Genbank.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
[2338]207GDE_Genbank.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]208GDE_Genbank.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]209GDE_Genbank.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]210GDE_Genbank.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]211GDE_Genbank.o: $(ARBHOME)/INCLUDE/arb_msg.h
212GDE_Genbank.o: $(ARBHOME)/INCLUDE/arb_string.h
[2338]213GDE_Genbank.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]214GDE_Genbank.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[6280]215GDE_Genbank.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]216GDE_Genbank.o: $(ARBHOME)/INCLUDE/arbtools.h
[5125]217GDE_Genbank.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]218GDE_Genbank.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[14435]219GDE_Genbank.o: $(ARBHOME)/INCLUDE/cb.h
220GDE_Genbank.o: $(ARBHOME)/INCLUDE/cb_base.h
221GDE_Genbank.o: $(ARBHOME)/INCLUDE/cbtypes.h
[9521]222GDE_Genbank.o: $(ARBHOME)/INCLUDE/cxxforward.h
[10563]223GDE_Genbank.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]224GDE_Genbank.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]225GDE_Genbank.o: $(ARBHOME)/INCLUDE/gccver.h
[6277]226GDE_Genbank.o: $(ARBHOME)/INCLUDE/smartptr.h
[10563]227GDE_Genbank.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]228GDE_Genbank.o: $(ARBHOME)/INCLUDE/test_global.h
[14435]229GDE_Genbank.o: $(ARBHOME)/INCLUDE/ttypes.h
[2338]230
231GDE_HGLfile.o: gde.hxx
232GDE_HGLfile.o: GDE_def.h
233GDE_HGLfile.o: GDE_extglob.h
234GDE_HGLfile.o: GDE_menu.h
[5316]235GDE_HGLfile.o: GDE_proto.h
[2338]236GDE_HGLfile.o: $(ARBHOME)/INCLUDE/ad_prot.h
[6280]237GDE_HGLfile.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
[2338]238GDE_HGLfile.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]239GDE_HGLfile.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]240GDE_HGLfile.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]241GDE_HGLfile.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]242GDE_HGLfile.o: $(ARBHOME)/INCLUDE/arb_msg.h
243GDE_HGLfile.o: $(ARBHOME)/INCLUDE/arb_string.h
[887]244GDE_HGLfile.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]245GDE_HGLfile.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[6280]246GDE_HGLfile.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]247GDE_HGLfile.o: $(ARBHOME)/INCLUDE/arbtools.h
[5125]248GDE_HGLfile.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]249GDE_HGLfile.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[14435]250GDE_HGLfile.o: $(ARBHOME)/INCLUDE/cb.h
251GDE_HGLfile.o: $(ARBHOME)/INCLUDE/cb_base.h
252GDE_HGLfile.o: $(ARBHOME)/INCLUDE/cbtypes.h
[9521]253GDE_HGLfile.o: $(ARBHOME)/INCLUDE/cxxforward.h
[10563]254GDE_HGLfile.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]255GDE_HGLfile.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]256GDE_HGLfile.o: $(ARBHOME)/INCLUDE/gccver.h
[6277]257GDE_HGLfile.o: $(ARBHOME)/INCLUDE/smartptr.h
[10563]258GDE_HGLfile.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]259GDE_HGLfile.o: $(ARBHOME)/INCLUDE/test_global.h
[14435]260GDE_HGLfile.o: $(ARBHOME)/INCLUDE/ttypes.h
[1617]261
[2338]262GDE_ParseMenu.o: gde.hxx
263GDE_ParseMenu.o: GDE_def.h
264GDE_ParseMenu.o: GDE_extglob.h
265GDE_ParseMenu.o: GDE_menu.h
[5316]266GDE_ParseMenu.o: GDE_proto.h
[2338]267GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/ad_prot.h
[6280]268GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
[2338]269GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]270GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/arb_core.h
[6277]271GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/arb_error.h
[11874]272GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/arb_file.h
[15176]273GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]274GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/arb_msg.h
[11874]275GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/arb_strarray.h
[7183]276GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/arb_string.h
[2338]277GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]278GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[6280]279GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6209]280GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/arbtools.h
[5125]281GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/attributes.h
[6868]282GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/aw_base.hxx
[10645]283GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
284GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/aw_window.hxx
[11874]285GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h
[10645]286GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/cb.h
[11034]287GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/cb_base.h
[10645]288GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/cbtypes.h
[9521]289GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/cxxforward.h
[10563]290GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]291GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]292GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/gccver.h
[11874]293GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/MultiFileReader.h
[6277]294GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/smartptr.h
[10563]295GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/static_assert.h
[6817]296GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/test_global.h
[10380]297GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/test_unit.h
[10645]298GDE_ParseMenu.o: $(ARBHOME)/INCLUDE/ttypes.h
Note: See TracBrowser for help on using the repository browser.