source: app/src/compiledic/Makefile @ 8d3e6ab

help
Last change on this file since 8d3e6ab was 8d3e6ab, checked in by pawelk <pawelk@…>, 17 years ago

Poprawilem wiekszosc makow pod katem poprawego kompilowania.
Wystepuje blad kompilacji dla gue.

git-svn-id: svn://atos.wmid.amu.edu.pl/utt@9 e293616e-ec6a-49c2-aa92-f4a8b91c5d16

  • Property mode set to 100644
File size: 368 bytes
Line 
1CFLAG1 = -m32 -Wno-deprecated -O3 -fpermissive
2CFLAG_ST = -Wno-deprecated -O3 -fpermissive -static
3
4all: compiledic aut2fsa
5
6compiledic:
7
8aut2fsa: aut2fsa.cc
9        #g++ -m32 -Wno-deprecated -O3 -fpermissive -static -o aut2fsa aut2fsa.cc
10        g++ $(CFLAG1) -o aut2fsa aut2fsa.cc
11
12
13copy:
14ifdef UTT_BIN_DIR
15        cp compiledic fsm2aut aut2fsa ${UTT_BIN_DIR}
16endif
17
18clean:
19        rm aut2fsa
20
Note: See TracBrowser for help on using the repository browser.