-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile
35 lines (32 loc) · 876 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
31
32
33
34
35
# global Makefile that is calling sub directories ones
gotoall: all
# Clean previous builds sequels
clean:
-rm -f Selene src/testSelene/testSelene
-rm -f lib/Selene/*.so
-rm -f lib/*.so.2
-rm -f src/*/*.o
# Build everything
all:
$(MAKE) -C src/SelPlugins/Curses
$(MAKE) -C src/SelPlugins/LCD
$(MAKE) -C src/libSelene
$(MAKE) -C src/SeleneCore
$(MAKE) -C src/SelLog
$(MAKE) -C src/SelLua
$(MAKE) -C src/SelScripting
$(MAKE) -C src/SelElasticStorage
$(MAKE) -C src/SelMultitasking
$(MAKE) -C src/SelSharedFunction
$(MAKE) -C src/SelSharedRef
$(MAKE) -C src/SelSharedVar
$(MAKE) -C src/SelMQTT
$(MAKE) -C src/SelError
$(MAKE) -C src/SelTimer
$(MAKE) -C src/SelFIFO
$(MAKE) -C src/SelEvent
$(MAKE) -C src/SelCollection
$(MAKE) -C src/SelAverageCollection
$(MAKE) -C src/SelTimedCollection
$(MAKE) -C src/SelTimedWindowCollection
$(MAKE) -C src/Selene