]> err.no Git - sope/blob - libFoundation/GNUmakefile
bringing libFoundation-1.0.75 into the main branch
[sope] / libFoundation / GNUmakefile
1 # $Id$
2
3 #  GNUmakefile.gnustep
4 #
5 #  Copyright (C) 1995, 1996, 1997 Ovidiu Predescu and Mircea Oancea.
6 #  All rights reserved.
7 #
8 #  Author: Ovidiu Predescu <ovidiu@net-community.com>
9 #  Date: October 1997
10 #
11 #  This file is part of libFoundation.
12 #
13 #  Permission to use, copy, modify, and distribute this software and its
14 #  documentation for any purpose and without fee is hereby granted, provided
15 #  that the above copyright notice appear in all copies and that both that
16 #  copyright notice and this permission notice appear in supporting
17 #  documentation.
18 #
19 #  We disclaim all warranties with regard to this software, including all
20 #  implied warranties of merchantability and fitness, in no event shall
21 #  we be liable for any special, indirect or consequential damages or any
22 #  damages whatsoever resulting from loss of use, data or profits, whether in
23 #  an action of contract, negligence or other tortious action, arising out of
24 #  or in connection with the use or performance of this software.
25 #
26
27 -include gsfix.make
28
29 ifeq ($(GNUSTEP_SYSTEM_ROOT),)
30
31 $(warning ERROR: Your $(GNUSTEP_SYSTEM_ROOT) environment variable is empty !)
32 $(error Please try again after running ". $(GNUSTEP_MAKEFILES)/GNUstep.sh")
33
34 else
35
36 GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
37
38 include $(GNUSTEP_MAKEFILES)/common.make
39 include ./Version
40
41 SUBPROJECTS = Foundation Resources examples
42
43 include $(GNUSTEP_MAKEFILES)/aggregate.make
44
45 after-distclean::
46         rm -f config.cache config.log config.status config.h config.mak
47
48 after-install ::
49         $(INSTALL_DATA) Foundation/libFoundation.make $(INSTALL_ROOT_DIR)$(GNUSTEP_MAKEFILES)/Additional/
50
51 endif