source: app/src/tok.l/Makefile @ 25ae32e

help
Last change on this file since 25ae32e was 25ae32e, checked in by obrebski <obrebski@…>, 16 years ago

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

  • Property mode set to 100644
File size: 290 bytes
Line 
1PAR=-O3 -static
2
3tok: tok.c cmdline.c
4        cc $(PAR) tok.c cmdline.c -o tok
5
6tok.c: tok.l
7        flex -8 -f -otok.c tok.l
8
9cmdline.c cmdline.h: cmdline_tok.ggo
10        gengetopt -i cmdline_tok.ggo --conf-parser
11
12clean:
13        rm *.c
14        rm cmdline.*
15        rm tok
16
17copy: tok
18ifdef UTT_BIN_DIR
19        cp tok ${UTT_BIN_DIR}
20endif
Note: See TracBrowser for help on using the repository browser.