Commit 72bdc341 by Rudolf

Add custom CFLAGS support

Append to CFLAGS for custom compilation
parent dfaebe75
Showing with 3 additions and 1 deletions
......@@ -7,8 +7,10 @@ SRC_FILES := \
DEBUG := 0
CFLAGS := -Wall
default:
gcc $(SRC_FILES) -o huffman -DDEBUG=$(DEBUG)
gcc $(SRC_FILES) -o huffman -DDEBUG=$(DEBUG) $(CFLAGS)
clean:
rm -f huffman
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment