-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.in
More file actions
45 lines (33 loc) · 800 Bytes
/
Makefile.in
File metadata and controls
45 lines (33 loc) · 800 Bytes
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
DBI_NAME=@DBI_NAME@
all: common_obj db_interface_obj db_interface_obj2 cache_exe dbdriver_exe appServer_exe \
tools_exe wgen_obj datagen_exe
wgen_obj:
cd wgen; $(MAKE)
datagen_exe:
cd datagen; $(MAKE)
common_obj:
cd common; $(MAKE)
db_interface_obj:
cd interfaces; $(MAKE)
db_interface_obj2:
cd interfaces/$(DBI_NAME)_com; $(MAKE)
cache_exe:
cd cache; $(MAKE)
dbdriver_exe:
cd dbdriver; $(MAKE)
appServer_exe:
cd appServer; $(MAKE)
tools_exe:
cd tools; $(MAKE)
clean:
cd wgen; $(MAKE) clean
cd common; $(MAKE) clean
cd interfaces; $(MAKE) clean
cd interfaces/$(DBI_NAME)_com; $(MAKE) clean
cd dbdriver; $(MAKE) clean
cd appServer; $(MAKE) clean
cd tools; $(MAKE) clean
cd datagen; $(MAKE) clean
cd cache; $(MAKE) clean
install:
chmod +x scripts/@DATABASE_TO_USE@/*.sh