diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-12-19 02:15:56 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-12-19 02:15:56 +0000 |
commit | a19061fcb71b7cf614c5d14d9057600246b07d76 (patch) | |
tree | 67ef85a7eb04a2ceada6a7d5f1013f18a16c877f | |
parent | af8e175e346d2189093a19b304242a43cb0ee4a8 (diff) |
build LYMainLoop.o -O0 as a workaround for gcc on hppa
-rw-r--r-- | gnu/usr.bin/lynx/src/makefile.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gnu/usr.bin/lynx/src/makefile.in b/gnu/usr.bin/lynx/src/makefile.in index ba451262e31..ee939498dc0 100644 --- a/gnu/usr.bin/lynx/src/makefile.in +++ b/gnu/usr.bin/lynx/src/makefile.in @@ -175,6 +175,16 @@ UCdomap.o: UCdomap.c chrtrans/UCkd.h chrtrans/makeuctb$x chrtrans/makeuctb.c \ UCAux.o : UCAux.c $(CMN)UCAux.h $(CMN)UCDefs.h LYCookie.o: $(top_srcdir)/userdefs.h +.if ${MACHINE_ARCH} == "hppa" +LYMainLoop.o: ${srcdir}/LYMainLoop.c +@RULE_CC@ + @ECHO_CC@$(CC) $(CC_OPTS) -O0 -c $< + +HTML.o: ${srcdir}/HTML.c +@RULE_CC@ + @ECHO_CC@$(CC) $(CC_OPTS) -O0 -c $< +.endif + depend : $(TABLES) makedepend -fmakefile -- $(CC_OPTS) -- $(C_SRC) |