-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
65 lines (56 loc) · 1.63 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#
# DO NOT EDIT THIS FILE MANUALLY
# This makefile was automatically generate for IDE home directory
#
# Global OPTIONS file has been used in generation
# Main target
info:
@echo
@echo " S3 IDE (Integrated Development Environment)"
@echo
@echo " type: make <target>"
@echo " Possible <target>'s are: "
@echo " make make IDE global Makefile"
@echo " allmake make IDE Makefiles in each dir "
@echo " clean IDE total cleanup "
@echo " add launch a script to add a new pakage "
@echo " <dir>_all make all executable in <dir> "
@echo " <dir>_loclib make the local library in <dir> "
@echo " <dir>_make make the Makefile for <dir> "
@echo " <dir>_allmake make all the Makefiles for <dir> and its libs "
@echo " <dir>_clean cleanup in <dir> "
@echo " <dir>_tar tar of a single dir "
@echo " <dir>_alltar tar of a dir with its libs "
@echo
@echo " Possible <dir> values are: "
@echo " iotk "
@echo
# targets for libs handling
iotk_all:
cd iotk ; make all
iotk_loclib:
cd iotk ; make loclib
iotk_make:
IDE/makemake.sh iotk
iotk_allmake: iotk_make
cd iotk ; make allmake
iotk_clean:
cd iotk ; make clean
iotk_tar:
cd iotk ; make tar
iotk_alltar:
cd iotk ; make alltar
# make all Makefiles
allmake: make
make -f Makefile allmake_
allmake_:
IDE/makemake.sh iotk
# target for making Makefile
make:
IDE/IDE_makemake.sh
# target to launch add_dir
add:
IDE/add_dir
# clean all
clean:
cd iotk ; make clean_