Merge pull request #263 from jmarshall/std-vars

Makefile: Use $CPPFLAGS and $LDFLAGS if they are set
This commit is contained in:
Heng Li 2022-03-07 09:50:23 -05:00 committed by GitHub
commit 8fdc96b5cf
1 changed files with 4 additions and 4 deletions

View File

@ -22,15 +22,15 @@ endif
.SUFFIXES:.c .o .cc .SUFFIXES:.c .o .cc
.c.o: .c.o:
$(CC) -c $(CFLAGS) $(DFLAGS) $(INCLUDES) $< -o $@ $(CC) -c $(CFLAGS) $(DFLAGS) $(INCLUDES) $(CPPFLAGS) $< -o $@
all:$(PROG) all:$(PROG)
bwa:libbwa.a $(AOBJS) main.o bwa:libbwa.a $(AOBJS) main.o
$(CC) $(CFLAGS) $(DFLAGS) $(AOBJS) main.o -o $@ -L. -lbwa $(LIBS) $(CC) $(CFLAGS) $(LDFLAGS) $(AOBJS) main.o -o $@ -L. -lbwa $(LIBS)
bwamem-lite:libbwa.a example.o bwamem-lite:libbwa.a example.o
$(CC) $(CFLAGS) $(DFLAGS) example.o -o $@ -L. -lbwa $(LIBS) $(CC) $(CFLAGS) $(LDFLAGS) example.o -o $@ -L. -lbwa $(LIBS)
libbwa.a:$(LOBJS) libbwa.a:$(LOBJS)
$(AR) -csru $@ $(LOBJS) $(AR) -csru $@ $(LOBJS)
@ -39,7 +39,7 @@ clean:
rm -f gmon.out *.o a.out $(PROG) *~ *.a rm -f gmon.out *.o a.out $(PROG) *~ *.a
depend: depend:
( LC_ALL=C ; export LC_ALL; makedepend -Y -- $(CFLAGS) $(DFLAGS) -- *.c ) ( LC_ALL=C ; export LC_ALL; makedepend -Y -- $(CFLAGS) $(DFLAGS) $(CPPFLAGS) -- *.c )
# DO NOT DELETE THIS LINE -- make depend depends on it. # DO NOT DELETE THIS LINE -- make depend depends on it.