From 711a992c83d7bb5fac583b7b1e8d9d4ca8a93e33 Mon Sep 17 00:00:00 2001 From: Timmy Keller Date: Mon, 23 Sep 2024 22:29:19 -0500 Subject: add gitignore and makefile --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e56cdd4 --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +# Makefile for gpt program + +CC = gcc +CFLAGS = -Wall +LDFLAGS = -lpulse + +TARGET = pavold +SOURCES = pavold.c + +all: $(TARGET) + +$(TARGET): $(SOURCES) + $(CC) $(CFLAGS) -o $(TARGET) $(SOURCES) $(LDFLAGS) + +clean: + rm -f $(TARGET) + -- cgit v1.2.3