source: src/compdic/Makefile @ 854bece

Last change on this file since 854bece was f600a02, checked in by Tomasz Obrebski <obrebski@…>, 11 years ago

Bugs in build and installation process fixed, lem.bin and gram.dgp built while compilation

  • Property mode set to 100644
File size: 1.0 KB
RevLine 
[e7de6cc]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)
[555c7f8]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)
[f600a02]22        install -m 0755 compdic-dic-to-cats $(BIN_DIR)
[f4bf33e]23        install -m 0755 compdic-fst-to-bin $(BIN_DIR)
24
[e7de6cc]25        install -m 0755 fsm2aut $(BIN_DIR)
26        install -m 0755 aut2fsa $(BIN_DIR)
27        install -m 0755 lst2fstext $(BIN_DIR)
28endif
29
30.PHONY: uninstall
31uninstall:
32ifdef BIN_DIR
33        rm $(BIN_DIR)/compdic
[555c7f8]34        rm $(BIN_DIR)/compdic-update
35        rm $(BIN_DIR)/compdic-update-fst
36        rm $(BIN_DIR)/compdic-update-cats
37        rm $(BIN_DIR)/compdic-dic-to-fst
[f600a02]38        rm $(BIN_DIR)/compdic-dic-to-cats
[f4bf33e]39        rm $(BIN_DIR)/compdic-fst-to-bin
[555c7f8]40
[e7de6cc]41        rm $(BIN_DIR)/fsm2aut
42        rm $(BIN_DIR)/aut2fsa
43        rm $(BIN_DIR)/lst2fstext
44endif
45
46.PHONY: clean
47clean:
48        rm aut2fsa
Note: See TracBrowser for help on using the repository browser.