Last change
on this file since e7de6cc was
e7de6cc,
checked in by Tomasz Obrebski <to@…>, 13 years ago
|
new version of dgp
added dgc, tre and compdic components
compiledic renamed to compdic_utf8
./configure updated
|
-
Property mode set to
100644
|
File size:
565 bytes
|
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 fsm2aut $(BIN_DIR) |
---|
19 | install -m 0755 aut2fsa $(BIN_DIR) |
---|
20 | install -m 0755 lst2fstext $(BIN_DIR) |
---|
21 | endif |
---|
22 | |
---|
23 | .PHONY: uninstall |
---|
24 | uninstall: |
---|
25 | ifdef BIN_DIR |
---|
26 | rm $(BIN_DIR)/compdic |
---|
27 | rm $(BIN_DIR)/fsm2aut |
---|
28 | rm $(BIN_DIR)/aut2fsa |
---|
29 | rm $(BIN_DIR)/lst2fstext |
---|
30 | endif |
---|
31 | |
---|
32 | .PHONY: clean |
---|
33 | clean: |
---|
34 | rm aut2fsa |
---|
Note: See
TracBrowser
for help on using the repository browser.