aboutsummaryrefslogtreecommitdiff
path: root/examples/Makefile
blob: 88af46d1398fd8337ce8289316aa71b5b6f4e8ab (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
33
34
35
36
37
38
39
40
41
42
43
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#     Compilation Options
# Debug mode (allowing to debug the examples via gdb):
# DEBUG    = yes
# Examples to build by default:
EXAMPLES = append cookie echo upload
# Specify your favourite C compiler here (e.g. tcc):
CC       = gcc


# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#     Preparations
# Compile under the most strict conditions:
CFLAGS   = -xc -ansi -pedantic -Wall -Wextra
# Debug and optimisation are not compatible:
ifeq '$(DEBUG)' 'yes'
CFLAGS  += -g -O0
else
CFLAGS  += -O3
endif

# Including magi library headers and setting linker to use it:
INCLUDE  = -I ../include
LFLAGS   = -L.. -lmagi
# Specify library file to set it as a prerequisite for compilation:
MAGI     = ../libmagi.a


# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#     Targets
# 'make' produces all examples by default:
default: $(EXAMPLES)

# Cleaning means removing everything automatically produced:
clean:
	rm -f $(EXAMPLES)


# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#     Compilation
# Compile executables from corresponding sources and library:
%: %.c $(MAGI)
	$(CC) $(CFLAGS) $(INCLUDE) $< $(LFLAGS) -o $@