* configure.in, */Makefile*.in: OPT can now be specified in the
env at configure time and will then be put in all Makefiles as default * */Makefile*.in: remove lib*.a before adding to it
This commit is contained in:
parent
c561e5dd58
commit
f0171a1626
|
@ -17,7 +17,7 @@ DEFS= @DEFS@
|
|||
# === Other things that are customizable but not by configure ===
|
||||
|
||||
INCLDIR= $(srcdir)/../Include
|
||||
OPT= -O
|
||||
OPT= @OPT@
|
||||
CFLAGS= $(OPT) -I$(INCLDIR) -I.. $(DEFS)
|
||||
|
||||
MKDEP= mkdep
|
||||
|
@ -48,6 +48,7 @@ LIB= libObjects.a
|
|||
all: $(LIB)
|
||||
|
||||
$(LIB): $(OBJS)
|
||||
-rm -f $(LIB)
|
||||
$(AR) cr $(LIB) $(OBJS)
|
||||
$(RANLIB) $(LIB)
|
||||
|
||||
|
|
Loading…
Reference in New Issue