From 6c63a850c091b4e63c16c0737654b09868625bec Mon Sep 17 00:00:00 2001 From: mrfright <234424+mrfright@users.noreply.github.com> Date: Tue, 23 Jul 2019 10:19:52 -0400 Subject: [PATCH] use make variables Replace `gcc` with variables to allow cross compiling. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a3ae882..d823146 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ udp-broadcast-relay-redux: main.c - gcc -g main.c -o udp-broadcast-relay-redux + $(CC) $(CFLAGS) -g main.c -o udp-broadcast-relay-redux clean: rm -f udp-broadcast-relay-redux