mirror of https://github.com/python/cpython
Makefile: add $(OPT) to linking line
tokenizer.c: move tok_backup call around
This commit is contained in:
parent
ba941eba67
commit
0e3da7ba50
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue