source: app/src/tok.l/Makefile @ 8abee07

help
Last change on this file since 8abee07 was 8d3e6ab, checked in by pawelk <pawelk@…>, 16 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: 296 bytes
Line 
1PAR=-O3 -m32
2#-static
3
4tok: tok.c cmdline.c
5        cc $(PAR) tok.c cmdline.c -o tok
6
7tok.c: tok.l
8        flex -8 -f -otok.c tok.l
9
10cmdline.c cmdline.h: cmdline_tok.ggo
11        gengetopt -i cmdline_tok.ggo --conf-parser
12
13clean:
14        rm *.c
15        rm cmdline.*
16        rm tok
17
18copy: tok
19ifdef UTT_BIN_DIR
20        cp tok ${UTT_BIN_DIR}
21endif
Note: See TracBrowser for help on using the repository browser.