moth/Makefile

23 lines
341 B
Makefile
Raw Normal View History

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-10-25 17:17:10 -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