summaryrefslogtreecommitdiff
path: root/examples/Makefile
blob: a3662b23e71debb826edbc0604dfd533990cba37 (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
# Uncomment following to enable debug mode:
# DEBUG    = yes

CC        = g++
EXAMPLES  = plain lines markdown

CPPFLAGS  = -Wall -ansi -pedantic
ifeq '$(DEBUG)' 'yes'
CPPFLAGS += -g -O0
else
CPPFLAGS += -O3
endif

INCLUDE   = -I../src
LFLAGS    = -L.. -ltexo

TEXO      = ../libtexo.a


default: $(EXAMPLES)

$(TEXO):
	cd ..; $(MAKE)

%: %.cpp $(TEXO)
	$(CC) $(CPPFLAGS) $(INCLUDE) $< $(LFLAGS) -o $@

clean:
	rm -f $(EXAMPLES)