blob: 0d73315dd0cdd355c3d9dfc98d8c095c98d18111 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
## Objective-CL, an Objective-C bridge for Common Lisp.
## Copyright (C) 2007 Matthias Andreas Benkard.
##
## This program is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or (at
## your option) any later version.
##
## This program is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/>.
include version.make
-include config.make
.PHONY: all clean distclean install
ifeq ($(CONFIG_MAKE_INCLUDED_P),)
all clean install: config.make
@echo "Please run ./configure before running make."
else # CONFIG_MAKE_INCLUDED_P
-include $(GNUSTEP_MAKEFILES)/common.make
PACKAGE_NAME = Objective-CL
RPM_DISABLE_RELOCATABLE = YES
SUBPROJECTS = Objective-C
ifneq ($(COMMON_MAKE_LOADED),)
include $(GNUSTEP_MAKEFILES)/aggregate.make
before-all before-clean before-install before-distclean:: config.make
after-distclean::
rm -f config.make
rm -f config.h
rm -f config.status config.log
else # Mac OS X
all:
$(MAKE) -C Objective-C all
clean:
$(MAKE) -C Objective-C clean
distclean:
$(MAKE) -C Objective-C distclean
rm -f config.make
rm -f config.h
rm -f config.status config.log
install:
$(MAKE) -C Objective-C install
endif # Mac OS X
endif # CONFIG_MAKE_INCLUDED_P
config.make: configure config.make.in
sh ./configure
configure: configure.ac
autoreconf || touch configure
|