source: rtems/automake/leaf.am @ 45789f2

4.104.114.84.95
Last change on this file since 45789f2 was a34b245, checked in by Joel Sherrill <joel.sherrill@…>, on 10/29/01 at 14:39:50

2001-10-29 Ralf Corsepius <corsepiu@…>

  • Adopt more automake rules:
  • automake/compile.am: Add LINK, CXXLINK, AS, ASCOMPILE; Remove ARFLAGS, LINK.c, COMPILE.S, LINK.cc; Add CPU_CFLAGS to CXXFLAGS, CFLAGS, ASFLAGS;
  • automake/leaf.am: Add CXXLINK_APP, LINK_APP, make-exe, apply CXXLINK_APP in make-cxx-exe.
  • automake/lib.am: Add ARFLAGS.
  • Property mode set to 100644
File size: 284 bytes
Line 
1include $(RTEMS_ROOT)/make/leaf.cfg
2
3CXXLINK_APP = $(CXXLINK) $(LDLIBS) $(LINK_OBJS) $(LINK_LIBS)
4ifndef make-cxx-exe
5define make-cxx-exe
6        $(CXXLINK_APP)
7endef
8@ENDIF@
9
10LINK_APP = $(LINK) $(LDLIBS) $(LINK_OBJS) $(LINK_LIBS)
11ifndef make-exe
12define make-exe
13        $(LINK_APP)
14endef
15@ENDIF@
16
Note: See TracBrowser for help on using the repository browser.