Tue, 25 Feb 2003 20:02:42 +0100
trunk: changeset 47
Added system-inc.mk and modified Makefile to use it
44 | 1 | # Use acsystem.mk if it exist, system.mk otherwise. |
2 | ||
3 | ifndef TOPDIR | |
4 | TOPDIR=. | |
5 | endif | |
6 | ||
7 | ifeq ($(TOPDIR)/acsystem.mk,$(wildcard $(TOPDIR)/acsystem.mk)) | |
8 | # Using acsystem.mk | |
9 | include $(TOPDIR)/acsystem.mk | |
10 | else | |
11 | # Not using acsystem.mk | |
12 | include $(TOPDIR)/system.mk | |
13 | endif | |
14 |