summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNemu Manaka <beatrice@dangofactory.local>2026-08-17 23:18:35 +0900
committerNemu Manaka <beatrice@dangofactory.local>2026-08-17 23:18:35 +0900
commit64cacba18f7e1eb2059fe6d8318931c105e927ae (patch)
tree230b80e28efb827283e31287b7a4cefe07a13dec /Makefile
downloadwm_pasori-64cacba18f7e1eb2059fe6d8318931c105e927ae.tar.gz
wm_pasori-64cacba18f7e1eb2059fe6d8318931c105e927ae.tar.bz2
wm_pasori-64cacba18f7e1eb2059fe6d8318931c105e927ae.zip
initial
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..bbbeae4
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,16 @@
+CC = gcc
+CFLAGS = -Wall -Wextra -Wno-deprecated-declarations -O2 $(shell pkg-config --cflags gtk+-3.0) -I/usr/local/include
+LDFLAGS = -L/usr/local/lib -lpafe -ldockapp -lX11 $(shell pkg-config --libs gtk+-3.0)
+
+TARGET = wm_pasori
+SRCS = wm_pasori.c
+
+all: $(TARGET)
+
+$(TARGET): $(SRCS)
+ $(CC) $(CFLAGS) $(SRCS) -o $(TARGET) $(LDFLAGS)
+
+clean:
+ rm -f $(TARGET)
+
+.PHONY: all clean