Last change
on this file was
c03f8a5,
checked in by Tomasz Obrebski <obrebski@…>, 10 years ago
|
minor fixes
|
-
Property mode set to
100644
|
File size:
1.1 KB
|
Line | |
---|
1 | include ../../config.mak |
---|
2 | |
---|
3 | LDFLAGS += -static |
---|
4 | CXXFLAGS += -O2 -fpermissive |
---|
5 | |
---|
6 | all: compdic aut2fsa |
---|
7 | |
---|
8 | .PHONY: compdic |
---|
9 | compdic: |
---|
10 | |
---|
11 | aut2fsa: aut2fsa.cc |
---|
12 | g++ $(CXXFLAGS) $(LDFLAGS) -o aut2fsa aut2fsa.cc |
---|
13 | |
---|
14 | .PHONY: install |
---|
15 | install: |
---|
16 | ifdef BIN_DIR |
---|
17 | install -m 0755 compdic $(BIN_DIR) |
---|
18 | install -m 0755 compdic-update $(BIN_DIR) |
---|
19 | install -m 0755 compdic-update-fst $(BIN_DIR) |
---|
20 | install -m 0755 compdic-update-cats $(BIN_DIR) |
---|
21 | install -m 0755 compdic-dic-to-fst $(BIN_DIR) |
---|
22 | install -m 0755 compdic-dic-to-cats $(BIN_DIR) |
---|
23 | install -m 0755 compdic-fst-to-bin $(BIN_DIR) |
---|
24 | |
---|
25 | install -m 0755 canonize $(BIN_DIR) |
---|
26 | install -m 0755 fsm2aut $(BIN_DIR) |
---|
27 | install -m 0755 aut2fsa $(BIN_DIR) |
---|
28 | install -m 0755 lst2fstext $(BIN_DIR) |
---|
29 | endif |
---|
30 | |
---|
31 | .PHONY: uninstall |
---|
32 | uninstall: |
---|
33 | ifdef BIN_DIR |
---|
34 | rm $(BIN_DIR)/compdic |
---|
35 | rm $(BIN_DIR)/compdic-update |
---|
36 | rm $(BIN_DIR)/compdic-update-fst |
---|
37 | rm $(BIN_DIR)/compdic-update-cats |
---|
38 | rm $(BIN_DIR)/compdic-dic-to-fst |
---|
39 | rm $(BIN_DIR)/compdic-dic-to-cats |
---|
40 | rm $(BIN_DIR)/compdic-fst-to-bin |
---|
41 | |
---|
42 | rm $(BIN_DIR)/fsm2aut |
---|
43 | rm $(BIN_DIR)/aut2fsa |
---|
44 | rm $(BIN_DIR)/lst2fstext |
---|
45 | rm $(BIN_DIR)/canonize |
---|
46 | endif |
---|
47 | |
---|
48 | .PHONY: clean |
---|
49 | clean: |
---|
50 | rm aut2fsa |
---|
Note: See
TracBrowser
for help on using the repository browser.