mirror of
https://github.com/dirtbags/moth.git
synced 2025-01-06 12:00:34 -07:00
12 lines
170 B
Makefile
12 lines
170 B
Makefile
SUBDIRS = src
|
|
|
|
all: build
|
|
|
|
include $(addsuffix /*.mk, $(SUBDIRS))
|
|
|
|
test: build
|
|
./test.sh
|
|
|
|
build: $(addsuffix -build, $(SUBDIRS))
|
|
clean: $(addsuffix -clean, $(SUBDIRS))
|
|
|