diff options
author | Timmy Keller <tjk@tjkeller.xyz> | 2024-09-23 22:29:19 -0500 |
---|---|---|
committer | Timmy Keller <tjk@tjkeller.xyz> | 2024-09-23 22:29:19 -0500 |
commit | 711a992c83d7bb5fac583b7b1e8d9d4ca8a93e33 (patch) | |
tree | 96647fef997ab034cd337c941fa90c738b890079 | |
parent | 31eeb1a591f83deaf4e518c199d62ddb07354a64 (diff) | |
download | pavolctld-711a992c83d7bb5fac583b7b1e8d9d4ca8a93e33.tar.xz pavolctld-711a992c83d7bb5fac583b7b1e8d9d4ca8a93e33.zip |
add gitignore and makefile
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..efba381 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +pavold 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) + |