public
Description: Recess is a playful, RESTful Erlang web framework
Clone URL: git://github.com/jmhodges/recess.git
Search Repo:
recess / Makefile
100644 23 lines (17 sloc) 0.321 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
EMULATOR=beam
SUB_DIRECTORIES= lib src tests
 
all: subdirs
  
subdirs:
  @for d in $(SUB_DIRECTORIES); do \
     ($(MAKE) -C $$d ); \
  done
 
clean:
  @for d in $(SUB_DIRECTORIES); do \
     ($(MAKE) clean -C $$d); \
  done
 
test: all
  $(MAKE) test -C tests
 
retest:
  $(MAKE) clean -C src
  $(MAKE) clean -C tests
  $(MAKE) test