aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 97dabaed258582051a827aef618da849b77622b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SUBDIRS = turff ceed codi

.PHONY: subdirs $(SUBDIRS)

all: TARGET = all

clean: TARGET = clean

debug: TARGET = debug

all clean debug: subdirs $(SUBDIRS)

$(SUBDIRS):
	$(MAKE) -C $@ $(TARGET)