Changeset 2058 in orxonox.OLD for orxonox/branches/chris/console
- Timestamp:
- Jul 2, 2004, 11:36:56 AM (20 years ago)
- Location:
- orxonox/branches/chris/console
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/chris/console/Makefile.am
r1982 r2058 1 AM_CXXFLAGS=`pkg-config --cflags gtk+-2.0` 2 AM_LDFLAGS=`pkg-config --libs gtk+-2.0`1 AM_CXXFLAGS=`pkg-config --cflags gtk+-2.0` $(MSBITFIELDS) 2 #AM_LDFLAGS=`pkg-config --libs gtk+-2.0` 3 3 4 4 bin_PROGRAMS=console 5 console_SOURCES=orxonox_console.cc orxonox_console_entry.cc orxonox_console_log.cc 5 console_SOURCES=orxonox_console.cc orxonox_console.h \ 6 orxonox_console_entry.cc orxonox_console_entry.h \ 7 orxonox_console_log.cc orxonox_console_log.h 6 8 7 9 # uncomment the following if bencoder requires the math library -
orxonox/branches/chris/console/Makefile.in
r1982 r2058 69 69 LTLIBOBJS = @LTLIBOBJS@ 70 70 MAKEINFO = @MAKEINFO@ 71 MSBITFIELDS = @MSBITFIELDS@ 71 72 OBJEXT = @OBJEXT@ 72 73 PACKAGE = @PACKAGE@ … … 110 111 sysconfdir = @sysconfdir@ 111 112 target_alias = @target_alias@ 112 AM_CXXFLAGS = `pkg-config --cflags gtk+-2.0` 113 AM_LDFLAGS = `pkg-config --libs gtk+-2.0` 114 113 AM_CXXFLAGS = `pkg-config --cflags gtk+-2.0` $(MSBITFIELDS) 114 115 #AM_LDFLAGS=`pkg-config --libs gtk+-2.0` 115 116 bin_PROGRAMS = console 116 console_SOURCES = orxonox_console.cc orxonox_console_entry.cc orxonox_console_log.cc 117 console_SOURCES = orxonox_console.cc orxonox_console.h \ 118 orxonox_console_entry.cc orxonox_console_entry.h \ 119 orxonox_console_log.cc orxonox_console_log.h 120 117 121 subdir = console 118 122 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 … … 141 145 CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ 142 146 -o $@ 147 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ 148 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) 149 CCLD = $(CC) 150 LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ 143 151 DIST_SOURCES = $(console_SOURCES) 144 152 DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -
orxonox/branches/chris/console/orxonox_console_entry.cc
r1907 r2058 29 29 30 30 31 OrxonoxConsoleEntry::OrxonoxConsoleEntry( )31 OrxonoxConsoleEntry::OrxonoxConsoleEntry(void) 32 32 {} 33 33
Note: See TracChangeset
for help on using the changeset viewer.