source: branches/port5/SL/DB_SCANNER/Makefile

Last change on this file was 5953, checked in by westram, 16 years ago
  • awt_create_selection_list_on_scand
    • pass label for popup button - currently there are multiple buttons with same remote-command-id in query window, this offers a way to fix it.
    • packed two bool params ('add_all_fields_pseudo_field' and 'include_hidden_fields') into enum 'awt_selected_fields'
  • moved awt_changekey.hxx to (empty) awt_item_sel_list.hxx
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1# INCLUDE und GLOBALS MAIN CC cflags werden von aussen uebergeben
2
3.SUFFIXES: .o .c .cxx .depend
4
5C_OBJECTS = 
6CPP_OBJECTS = db_scanner.o
7OBJECTS=$(C_OBJECTS) $(CPP_OBJECTS)
8
9$(MAIN): $(OBJECTS)
10        $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS)
11
12.cxx.o:
13        $(CPP) $(cflags) -c $< $(CPPINCLUDES)
14
15.c.o:
16        $(ACC) $(cflags) -c $< $(AINCLUDES)
17
18clean:
19        rm -f $(OBJECTS) *.a
20
21DEPENDS = $(OBJECTS:.o=.depend)
22depends: $(DEPENDS)
23        @cat $(DEPENDS) | grep -v '^#' >>Makefile
24        @rm $(DEPENDS)
25$(DEPENDS): depend.init
26depend.init:
27        $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
28.c.depend:
29        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
30.cxx.depend:
31        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
32
33# DO NOT DELETE
34
35# Do not add dependencies manually - use 'make depend' in $ARBHOME
36# For formatting issues see SOURCE_TOOLS/fix_depends.pl
37
38db_scanner.o: db_scanner.hxx
39db_scanner.o: $(ARBHOME)/INCLUDE/ad_k_prot.h
40db_scanner.o: $(ARBHOME)/INCLUDE/ad_prot.h
41db_scanner.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
42db_scanner.o: $(ARBHOME)/INCLUDE/arb_assert.h
43db_scanner.o: $(ARBHOME)/INCLUDE/arbdb.h
44db_scanner.o: $(ARBHOME)/INCLUDE/arbdb_base.h
45db_scanner.o: $(ARBHOME)/INCLUDE/arbdbt.h
46db_scanner.o: $(ARBHOME)/INCLUDE/attributes.h
47db_scanner.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
48db_scanner.o: $(ARBHOME)/INCLUDE/aw_device.hxx
49db_scanner.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
50db_scanner.o: $(ARBHOME)/INCLUDE/aw_position.hxx
51db_scanner.o: $(ARBHOME)/INCLUDE/AW_rename.hxx
52db_scanner.o: $(ARBHOME)/INCLUDE/aw_root.hxx
53db_scanner.o: $(ARBHOME)/INCLUDE/aw_window.hxx
54db_scanner.o: $(ARBHOME)/INCLUDE/awt.hxx
55db_scanner.o: $(ARBHOME)/INCLUDE/awtlocal.hxx
56db_scanner.o: $(ARBHOME)/INCLUDE/inline.h
Note: See TracBrowser for help on using the repository browser.