From 6bed0d5a121c1506aa214d122bafb1645637180f Mon Sep 17 00:00:00 2001 From: Tobias Girstmair Date: Wed, 29 May 2024 20:07:18 +0200 Subject: [PATCH] clean up makefile --- Makefile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 51b90c5..9b3569b 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,3 @@ -CFLAGS=-Wall -Wpedantic -std=c89 -g -ltls -ircpipe: ircpipe.c - -.PHONY: test -test: ircpipe - ./ircpipe -n asdfsdw -j '#vxmvcxcwe' irc.efnet.org +CFLAGS ?= -std=c89 -Wall -Wextra -Wpedantic -g +LDFLAGS = -ltls +all: ircpipe -- 2.39.3