aboutsummaryrefslogtreecommitdiffhomepage
path: root/demo/Makefile
blob: 7039b4aed71a36c4ed4e065314f8cc1fa75743b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
ifeq ($(TYPE),debug)
DEBUG_FLAGS = -Ddebug
else
DEBUG_FLAGS =
endif

include ../include.mk

ERLC_FLAGS+=-W $(DEBUG_FLAGS)
MODULES = ex2 ex1 


TARGETS = $(MODULES:%=%.beam) 

all debug:	$(TARGETS) 

clean:
	rm -f $(TARGETS)