~armagetronad-dev/armagetronad/trunk-build_eclipse-work

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: z-man
  • Date: 2006-05-31 06:32:35 UTC
  • Revision ID: svn-v3-list-QlpoOTFBWSZTWZvbKhsAAAdRgAAQABK6798QIABURMgAAaeoNT1TxT1DQbKaeobXKiyAmlWT7Y5MkdJOtXDtB7w7DOGFBHiOBxaUIu7HQyyQSvxdyRThQkJvbKhs:7d95bf1e-0414-0410-9756-b78462a59f44:armagetronad%2Ftrunk%2Fbuild_eclipse:4656
Merging branch 0.2.8 from revision 4612 to 4640:
 ------------------------------------------------------------------------
 r4637 | z-man | 2006-05-30 23:56:23 +0200 (Tue, 30 May 2006) | 1 line
 
 Renamed cvscheck to devcheck
 ------------------------------------------------------------------------
 r4636 | z-man | 2006-05-30 23:16:30 +0200 (Tue, 30 May 2006) | 1 line
 
 Disabled custom memory manager globally. The external libraries weren't using it, so allocating in libxml2 and freeing in the game caused crashes.
 ------------------------------------------------------------------------
 r4635 | z-man | 2006-05-30 22:49:12 +0200 (Tue, 30 May 2006) | 1 line
 
 Adapted to armagetronad_winlibs -> winlibs renaming (again)
 ------------------------------------------------------------------------
 r4632 | z-man | 2006-05-30 22:39:46 +0200 (Tue, 30 May 2006) | 1 line
 
 Disabled precompiled headers, they don?\194?\180t seem to work properly (file system errors, no write permission, very mysterious)
 ------------------------------------------------------------------------
 r4630 | z-man | 2006-05-30 22:31:06 +0200 (Tue, 30 May 2006) | 1 line
 
 Adapted to armagetronad_winlibs -> winlibs renaming
 ------------------------------------------------------------------------
 r4629 | z-man | 2006-05-30 22:21:09 +0200 (Tue, 30 May 2006) | 1 line
 
 fixed distcheck
 ------------------------------------------------------------------------
 r4628 | z-man | 2006-05-30 17:23:21 +0200 (Tue, 30 May 2006) | 1 line
 
 fully switched to svn.
 ------------------------------------------------------------------------
 r4627 | z-man | 2006-05-30 16:32:51 +0200 (Tue, 30 May 2006) | 1 line
 
 Takes branch/tag info from SVN now to generate version from it.
 ------------------------------------------------------------------------
 r4625 | z-man | 2006-05-30 09:14:08 +0200 (Tue, 30 May 2006) | 1 line
 
 Adapted "make dist" for subversion, .svn directories are cleared as well
 ------------------------------------------------------------------------
 r4624 | z-man | 2006-05-30 09:13:18 +0200 (Tue, 30 May 2006) | 1 line
 
 Renamed cvstest to devtest
 ------------------------------------------------------------------------
 r4619 | z-man | 2006-05-29 16:36:10 +0200 (Mon, 29 May 2006) | 1 line
 
 Switched form cvs2cl to svn log. svn2cl eats the whole memory, then dies.
 ------------------------------------------------------------------------
 r4618 | z-man | 2006-05-29 16:18:20 +0200 (Mon, 29 May 2006) | 1 line
 
 Fixed missing character bug on the lowest level
 ------------------------------------------------------------------------

Show diffs side-by-side

added added

removed removed

Lines of Context:
154
154
        AAPATH=$(AAPATH) CXX="${CXX}" MAKEFLAGS="${MAKEFLAGS}" MAKE=$(MAKE) DEBUGLEVEL=$(DEBUGLEVEL) CODELEVEL=$(CODELEVEL) CXXFLAGS="$(CXXFLAGS_OPTIMIZE) $(CXXFLAGS_SERVER) $(CXXFLAGS_SERVER_OPTIMIZE)" bash ./configure server --disable-glout
155
155
        $(MAKE) -C build/server rebeautify 
156
156
 
157
 
# run checks before committing to CVS
158
 
cvscheck_single.%: %
159
 
        $(MAKE) -C build/$* cvscheck
160
 
cvscheck: cvscheck_single.client_debug cvscheck_single.client_optimize cvscheck_single.server_debug cvscheck_single.server_optimize
 
157
# run checks before committing to SCM
 
158
devcheck_single.%: %
 
159
        $(MAKE) -C build/$* devcheck
 
160
devcheck: devcheck_single.client_debug devcheck_single.client_optimize devcheck_single.server_debug devcheck_single.server_optimize
161
161
 
162
162
# tests distribution
163
163
distcheck_fake_single.%: %
168
168
distcheck: distcheck_single.client_debug
169
169
distcheck_full: distcheck_single.client_debug distcheck_single.server_debug distcheck_single.client_optimize distcheck_single.server_optimize
170
170
 
171
 
fullcheck: cvscheck distcheck_full
 
171
fullcheck: devcheck distcheck_full
172
172