2005-04-24 08:51:33 +00:00
|
|
|
|
|
|
|
# Copyright (c) 2004 Don Stewart - http://www.cse.unsw.edu.au/~dons
|
|
|
|
# GPL version 2 or later (see http://www.gnu.org/copyleft/gpl.html)
|
|
|
|
|
2005-05-15 04:55:38 +00:00
|
|
|
.PHONY: all build altdata hi plugins
|
|
|
|
.PHONY: install i_altdata i_hi i_plugins
|
2005-04-24 08:51:33 +00:00
|
|
|
|
2005-05-15 04:55:38 +00:00
|
|
|
build: altdata hi plugins
|
2005-04-24 08:51:33 +00:00
|
|
|
|
|
|
|
altdata:
|
|
|
|
@cd altdata && $(MAKE)
|
|
|
|
hi:
|
|
|
|
@cd hi && $(MAKE)
|
2005-04-28 11:27:38 +00:00
|
|
|
plugins: altdata hi
|
2005-04-24 08:51:33 +00:00
|
|
|
@cd plugins && $(MAKE)
|
|
|
|
|
2005-05-15 04:55:38 +00:00
|
|
|
install: i_altdata i_hi i_plugins
|
2005-04-24 08:51:33 +00:00
|
|
|
@true
|
|
|
|
|
|
|
|
i_altdata:
|
|
|
|
@cd altdata && $(MAKE) install
|
|
|
|
i_hi:
|
|
|
|
@cd hi && $(MAKE) install
|
|
|
|
i_plugins:
|
|
|
|
@cd plugins && $(MAKE) install
|
|
|
|
|
|
|
|
all: build
|
|
|
|
|
|
|
|
TOP=..
|
|
|
|
include build.mk
|