-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
30 lines (24 loc) · 986 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
# The simplest way to compile x3c on Linux, Mac or Unix is:
# 1. `cd' to the directory containing the file of 'Makefile'.
# 2. Type `make' to compile the package.
# The program binaries files are outputed to 'code/bin/plugins/' or 'code\bin\tests'.
#
# 3. You can remove the program object files from the source code
# directory by typing `make clean'.
#
ROOTDIR = .
include $(ROOTDIR)/config.mk
.PHONY: code clean
#==============================================================================
# The default build target.
#==============================================================================
all: code
#==============================================================================
code:
$(MAKE) -C code
#==============================================================================
# Clean up the targets built by 'make all'.
#==============================================================================
clean: code_clean
code_clean:
$(MAKE) -C code clean