summaryrefslogtreecommitdiff
path: root/omega/Makefile
blob: 7e4204d83627dd44ee0ada4f256546d2f54c970a (plain)
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
# DON'T EDIT -- put changes in Makefile.config.

BASEDIR = ./
include $(BASEDIR)/Makefile.config

all:
	cd omega_lib/obj; $(MAKE)
ifeq ($(BUILD_CODEGEN), true)
	cd code_gen/obj; $(MAKE)
endif
	cd omega_calc/obj; $(MAKE)

depend:
	cd omega_lib/obj; $(MAKE) depend
ifeq ($(BUILD_CODEGEN), true)
	cd code_gen/obj; $(MAKE) depend
endif
	cd omega_calc/obj; $(MAKE) depend

clean:
	cd omega_lib/obj; $(MAKE) clean
	cd code_gen/obj; $(MAKE) clean
	cd omega_calc/obj; $(MAKE) clean

veryclean:
	cd omega_lib/obj; $(MAKE) veryclean
	cd code_gen/obj; $(MAKE) veryclean
	cd omega_calc/obj; $(MAKE) veryclean

install:
	cp -rL bin lib include $(DEST_DIR)