blob: 285f70ee24bedbe9ea7106bb57a10db37e84ea13 (
plain) (
blame)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
.POSIX:
CONFIGFILE = config.mk
include $(CONFIGFILE)
OS = linux
# Linux: linux
# Mac OS: macos
# Windows: windows
include mk/$(OS).mk
LIB_MAJOR = 1
LIB_MINOR = 0
LIB_VERSION = $(LIB_MAJOR).$(LIB_MINOR)
LIB_NAME = automata
OBJ =\
libautomata_reset_kmp_automaton.o\
libautomata_clone_kmp_automaton.o\
libautomata_compile_kmp_automaton.o\
libautomata_execute_kmp_automaton.o\
libautomata_reset_mp_automaton.o\
libautomata_clone_mp_automaton.o\
libautomata_compile_mp_automaton.o\
libautomata_execute_mp_automaton.o
TOBJ =\
test_kmp_automaton.to\
test_mp_automaton.to
HDR =\
libautomata.h\
common.h
LOBJ = $(OBJ:.o=.lo)
TEST = $(TOBJ:.to=.t)
all: libautomata.a libautomata.$(LIBEXT) $(TEST)
$(OBJ): $(HDR)
$(LOBJ): $(HDR)
$(TOBJ): $(HDR)
$(TEST): libautomata.a
.c.o:
$(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS)
.c.lo:
$(CC) -fPIC -c -o $@ $< $(CFLAGS) $(CPPFLAGS)
.c.to:
$(CC) -DTEST -c -o $@ $< $(CFLAGS) $(CPPFLAGS)
.to.t:
$(CC) -o $@ $< libautomata.a $(LDFLAGS)
.c.t:
$(CC) -DTEST -o $@ $< libautomata.a $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)
libautomata.a: $(OBJ)
@rm -f -- $@
$(AR) rc $@ $(OBJ)
$(AR) ts $@ > /dev/null
libautomata.$(LIBEXT): $(LOBJ)
$(CC) $(LIBFLAGS) -o $@ $(LOBJ) $(LDFLAGS)
check: $(TEST)
@set -e;\
for t in $(TEST); do\
printf '%s ' $(CHECK_PREFIX) "./$$t"; printf '\n';\
$(CHECK_PREFIX) ./"$$t";\
done
install: libautomata.a libautomata.$(LIBEXT)
mkdir -p -- "$(DESTDIR)$(PREFIX)/lib"
mkdir -p -- "$(DESTDIR)$(PREFIX)/include"
cp -- libautomata.a "$(DESTDIR)$(PREFIX)/lib/"
cp -- libautomata.$(LIBEXT) "$(DESTDIR)$(PREFIX)/lib/libautomata.$(LIBMINOREXT)"
$(FIX_INSTALL_NAME) "$(DESTDIR)$(PREFIX)/lib/libautomata.$(LIBMINOREXT)"
ln -sf -- libautomata.$(LIBMINOREXT) "$(DESTDIR)$(PREFIX)/lib/libautomata.$(LIBMAJOREXT)"
ln -sf -- libautomata.$(LIBMAJOREXT) "$(DESTDIR)$(PREFIX)/lib/libautomata.$(LIBEXT)"
cp -- libautomata.h "$(DESTDIR)$(PREFIX)/include/"
uninstall:
-rm -f -- "$(DESTDIR)$(PREFIX)/lib/libautomata.a"
-rm -f -- "$(DESTDIR)$(PREFIX)/lib/libautomata.$(LIBMAJOREXT)"
-rm -f -- "$(DESTDIR)$(PREFIX)/lib/libautomata.$(LIBMINOREXT)"
-rm -f -- "$(DESTDIR)$(PREFIX)/lib/libautomata.$(LIBEXT)"
-rm -f -- "$(DESTDIR)$(PREFIX)/include/libautomata.h"
clean:
-rm -f -- *.o *.a *.lo *.su *.so *.so.* *.dll *.dylib
-rm -f -- *.gch *.gcov *.gcno *.gcda *.$(LIBEXT)
-rm -f -- *.t *.to
.SUFFIXES:
.SUFFIXES: .lo .o .c .t .to
.PHONY: all check install uninstall clean
|