diff options
author | Waldemar Celes <celes@tecgraf.puc-rio.br> | 1994-07-19 19:04:51 -0300 |
---|---|---|
committer | Waldemar Celes <celes@tecgraf.puc-rio.br> | 1994-07-19 19:04:51 -0300 |
commit | 6c99b8bbdf141455c29201cded34d2083825ad1f (patch) | |
tree | e086f295f2194ba6c7737305166032196ac86f30 | |
parent | 6625296c8f498e09e502748092d1e203a6c6cc56 (diff) | |
download | lua-6c99b8bbdf141455c29201cded34d2083825ad1f.tar.gz lua-6c99b8bbdf141455c29201cded34d2083825ad1f.tar.bz2 lua-6c99b8bbdf141455c29201cded34d2083825ad1f.zip |
opcao "clear" para limpar arquivos que podem ser reconstruidos pelo
make (menos os .a e o executavel "lua").
-rw-r--r-- | makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,4 @@ | |||
1 | # $Id: makefile,v 1.5 1994/01/10 19:49:56 roberto Exp celes $ | 1 | # $Id: makefile,v 1.6 1994/07/19 21:35:36 celes Exp celes $ |
2 | # Compilation parameters | 2 | # Compilation parameters |
3 | CC = gcc | 3 | CC = gcc |
4 | CFLAGS = -I/usr/5include -Wall -O2 | 4 | CFLAGS = -I/usr/5include -Wall -O2 |
@@ -48,6 +48,11 @@ liblua.so.1.0 : lua.o | |||
48 | y.tab.c : lua.stx exscript | 48 | y.tab.c : lua.stx exscript |
49 | yacc -d lua.stx ; ex y.tab.c <exscript | 49 | yacc -d lua.stx ; ex y.tab.c <exscript |
50 | 50 | ||
51 | clear : | ||
52 | rcsclean | ||
53 | rm -f *.o | ||
54 | rm -f y.tab.c y.tab.h | ||
55 | |||
51 | % : RCS/%,v | 56 | % : RCS/%,v |
52 | co $@ | 57 | co $@ |
53 | 58 | ||