1
0
Fork 0
mirror of https://github.com/dirtbags/moth.git synced 2025-01-06 12:00:34 -07:00
moth/Makefile

13 lines
170 B
Makefile
Raw Normal View History

2010-09-13 17:32:51 -06:00
SUBDIRS = src
2010-09-13 17:32:51 -06:00
all: build
2010-03-02 22:18:13 -07:00
include $(addsuffix /*.mk, $(SUBDIRS))
2010-09-13 17:32:51 -06:00
test: build
./test.sh
2010-03-02 22:18:13 -07:00
2010-09-13 17:32:51 -06:00
build: $(addsuffix -build, $(SUBDIRS))
2010-03-02 22:18:13 -07:00
clean: $(addsuffix -clean, $(SUBDIRS))
2010-09-13 17:32:51 -06:00