diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-05-03 14:27:03 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-05-03 14:27:03 -0300 |
commit | 88cf0836fc76f85040b638ac3888b2340e7e9ac0 (patch) | |
tree | d19054acd559340c6da3623d0fcf8480b7ee6923 | |
parent | 3ec9ee0d0f81fd0aabaef1303f971b2f7ee12315 (diff) | |
download | lua-88cf0836fc76f85040b638ac3888b2340e7e9ac0.tar.gz lua-88cf0836fc76f85040b638ac3888b2340e7e9ac0.tar.bz2 lua-88cf0836fc76f85040b638ac3888b2340e7e9ac0.zip |
"isatty" is POSIX, but not ANSI.
-rw-r--r-- | makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,9 +1,10 @@ | |||
1 | # $Id: makefile,v 1.22 1996/03/15 18:22:09 roberto Exp roberto $ | 1 | # $Id: makefile,v 1.23 1996/04/25 14:01:27 roberto Exp roberto $ |
2 | 2 | ||
3 | #configuration | 3 | #configuration |
4 | 4 | ||
5 | # define (undefine) POPEN if your system (does not) support piped I/O | 5 | # define (undefine) POPEN if your system (does not) support piped I/O |
6 | CONFIG = -DPOPEN | 6 | # define (undefine) POSIX if your system is (not) POSIX compliant |
7 | CONFIG = -DPOPEN -DPOSIX | ||
7 | # Compilation parameters | 8 | # Compilation parameters |
8 | CC = gcc | 9 | CC = gcc |
9 | CFLAGS = $(CONFIG) -I/usr/5include -Wall -Wmissing-prototypes -Wshadow -ansi -O2 | 10 | CFLAGS = $(CONFIG) -I/usr/5include -Wall -Wmissing-prototypes -Wshadow -ansi -O2 |