~naesten/quadra/vc2005express-build

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: pphaneuf
  • Date: 2000-11-14 00:03:49 UTC
  • Revision ID: svn-v4:8926ee93-8b47-0410-9975-e57e0fb0bd0c:trunk/quadra:46
Introducing autoconf and a new Makefile system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile pour le Universal Game Skelton
 
1
# Quadra - a multiplayer action puzzle game
 
2
# Copyright (C) 2000  Pierre Phaneuf
 
3
#
 
4
# This library is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU Library General Public License as
 
6
# published by the Free Software Foundation; either version 2 of the
 
7
# License, or (at your option) any later version.
 
8
#
 
9
# This library is distributed in the hope that it will be useful, but
 
10
# WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
# Library General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU Library General Public
 
15
# License along with this library; if not, write to the Free Software
 
16
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
17
# 02111-1307, USA.
 
18
#
2
19
# $Id$
3
20
 
4
 
MAKEFILE_INCLUDED:=yes
5
 
 
6
 
.PHONY: default all release
 
21
.PHONY: default all
7
22
 
8
23
default: all
9
24
 
10
 
release:
11
 
        @$(MAKE) RELEASE=yes
12
 
 
13
 
include config/common.mk
 
25
-include config/config.mk
 
26
 
 
27
DISTCLEAN+=config.cache config.log config.status
 
28
REALCLEAN+=configure
 
29
 
 
30
include $(wildcard */vars.mk)
 
31
 
 
32
include $(wildcard */rules.mk)
 
33
 
 
34
all: $(TARGETS)
14
35