From: Guido van Rossum Date: Mon, 29 Aug 1994 10:44:10 +0000 (+0000) Subject: Makefile: add $(OPT) to linking line X-Git-Tag: v1.1~153 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0e3da7ba50718820ac7b0e35be82a75334f48d0a;p=thirdparty%2FPython%2Fcpython.git Makefile: add $(OPT) to linking line tokenizer.c: move tok_backup call around --- diff --git a/Parser/Makefile.in b/Parser/Makefile.in index 899ad9289bb3..6a8fc219e26f 100644 --- a/Parser/Makefile.in +++ b/Parser/Makefile.in @@ -51,7 +51,7 @@ $(LIB): $(PARSEROBJS) $(RANLIB) $(LIB) $(PGEN): $(PGENOBJS) $(LIB) - $(CC) $(PGENOBJS) $(LIB) -o $(PGEN) + $(CC) $(OPT) $(PGENOBJS) $(LIB) -o $(PGEN) clean: -rm -f *.o core *~ [@,#]* *.old *.orig *.rej