forked from hawk/eflex
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
30 lines (26 loc) · 845 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
######################################################################
## Copyright (c) 2009 Hakan Mattsson
##
## See the file "LICENSE" for information on usage and redistribution
## of this file, and for a DISCLAIMER OF ALL WARRANTIES.
######################################################################
SUBDIRS = src
all: Makefile
@for d in $(SUBDIRS); do \
if test ! -d $$d ; then \
echo "=== Skipping subdir $$d" ; \
else \
(cd $$d && $(MAKE) $@) ; \
fi ; \
done
clean: Makefile
rm -f *~
@for d in $(SUBDIRS); do \
if test ! -d $$d ; then \
echo "=== Skipping subdir $$d" ; \
else \
(cd $$d && $(MAKE) $@) ; \
fi ; \
done
install: all
bin/eflex --install