2010-10-25 17:17:10 -06:00
|
|
|
# Scratch directory for building extrenal sources
|
2010-10-21 22:15:18 -06:00
|
|
|
BUILD = build
|
2010-10-25 17:17:10 -06:00
|
|
|
|
|
|
|
# Root to install things before they're packaged
|
|
|
|
TARGET = target
|
|
|
|
|
|
|
|
# Downloaded source files go here
|
|
|
|
CACHE = cache
|
|
|
|
|
|
|
|
# The end result
|
2010-10-21 22:15:18 -06:00
|
|
|
BIN = bin
|
2010-09-24 17:24:43 -06:00
|
|
|
|
2010-10-25 17:17:10 -06:00
|
|
|
|
2010-09-24 17:24:43 -06:00
|
|
|
all: packages
|
|
|
|
|
2010-10-25 17:17:10 -06:00
|
|
|
clean: packages-clean
|
|
|
|
rm -rf $(BUILD) $(TARGET) $(BIN)
|
|
|
|
|
|
|
|
scrub: clean
|
|
|
|
rm -rf $(CACHE)
|
|
|
|
|
2010-10-21 22:15:18 -06:00
|
|
|
include packages/packages.mk
|