source: src/compdic/Makefile @ a15e59b

Last change on this file since a15e59b was e7de6cc, checked in by Tomasz Obrebski <to@…>, 12 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 
1include ../../config.mak
2
3LDFLAGS += -static
4CXXFLAGS += -O2 -fpermissive
5
6all: compdic aut2fsa
7
8.PHONY: compdic
9compdic:
10
11aut2fsa: aut2fsa.cc
12        g++ $(CXXFLAGS) $(LDFLAGS) -o aut2fsa aut2fsa.cc
13
14.PHONY: install
15install:
16ifdef 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)
21endif
22
23.PHONY: uninstall
24uninstall:
25ifdef BIN_DIR
26        rm $(BIN_DIR)/compdic
27        rm $(BIN_DIR)/fsm2aut
28        rm $(BIN_DIR)/aut2fsa
29        rm $(BIN_DIR)/lst2fstext
30endif
31
32.PHONY: clean
33clean:
34        rm aut2fsa
Note: See TracBrowser for help on using the repository browser.