Skip to content

Commit

Permalink
Don't override the system CC/CFLAGS settings
Browse files Browse the repository at this point in the history
  • Loading branch information
dennypage committed Nov 5, 2024
1 parent b9b2c97 commit 69c2701
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#CC=gcc
CC=clang

CFLAGS=-Wall -Wextra -g -O2
#CC=clang
#CFLAGS=-Wall -Wextra -g -O2

all: mdns-bridge

Expand All @@ -12,7 +10,7 @@ $(all_objects): common.h
$(dns_objects): dns.h

mdns-bridge: $(all_objects)
${CC} -o mdns-bridge -pthread $(all_objects)
$(CC) -o mdns-bridge -pthread $(all_objects)

.PHONY: clean
clean:
Expand Down

0 comments on commit 69c2701

Please sign in to comment.