summaryrefslogtreecommitdiff
path: root/makefile.in
diff options
context:
space:
mode:
authorRobert de Bath <rdebath@poboxes.com>2002-01-12 20:42:42 +0100
committerLubomir Rintel <lkundrak@v3.sk>2013-10-23 23:48:46 +0200
commitd91fa39567f5659e3931cf61517d62fddcd87570 (patch)
tree20583acd4f345a4f5c9a7772870ef972cb8a3b14 /makefile.in
parentbff547eabb6678ec8e71ffbcfbf9a4f05c94d949 (diff)
downloaddev86-d91fa39567f5659e3931cf61517d62fddcd87570.tar.gz
Import Dev86src-0.16.1.tar.gzv0.16.1
Diffstat (limited to 'makefile.in')
-rw-r--r--makefile.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/makefile.in b/makefile.in
index 25ea4d4..3cf85c7 100644
--- a/makefile.in
+++ b/makefile.in
@@ -39,7 +39,7 @@ WALL =-Wtraditional -Wshadow -Wid-clash-14 -Wpointer-arith \
WALL =-Wstrict-prototypes
CC =gcc
-CFLAGS =$(GCCFLAG) -Wall $(WALL) -O6 -g
+CFLAGS =$(GCCFLAG) -Wall $(WALL) -O2 -g
#endif
#ifndef GNUMAKE
@@ -324,10 +324,10 @@ install-other:
$(MAKEC) $$i BCC=ncc DIST=$(DIST) PREFIX=$(PREFIX) install || exit 1 ; \
done
-other: $(OTHERS)
-
-$(OTHERS):
- $(MAKEC) $@ BCC=ncc
+other:
+ @for i in $(OTHERS) ; do \
+ $(MAKEC) $$i BCC=ncc DIST=$(DIST) PREFIX=$(PREFIX) || exit 1; \
+ done
clean:
-@for i in $(CLEANLIST) ; do $(MAKEC) $$i $@ ; true ; done