Skip to content

Commit

Permalink
Merge pull request #15 from PDXostc/makefile-fixes
Browse files Browse the repository at this point in the history
Use ?= for CFLAGS
  • Loading branch information
jack-sanchez authored Jun 28, 2019
2 parents 54feccf + 0597802 commit 1d7bfff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ TEST_TARGET=rmc_test
WIRESHARK_TARGET=rmc_wireshark_plugin.so
DESTDIR ?= /usr/local

CFLAGS = -O3 -fpic -Wall -D_GNU_SOURCE
CFLAGS ?= -O3 -fpic -Wall -D_GNU_SOURCE
.PHONY: all clean etags print_obj install uninstall

all: $(LIB_TARGET) $(LIB_SO_TARGET) $(TEST_TARGET)
Expand Down

0 comments on commit 1d7bfff

Please sign in to comment.