From 972806b56a0bda9a0a15cd59da9141ace4ab5bad Mon Sep 17 00:00:00 2001 From: gfhopper Date: Tue, 6 May 2025 17:17:30 -0400 Subject: [PATCH] Remove Makefile, from an older build --- Makefile | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 08b74df..0000000 --- a/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -CC = gcc -CFLAGS = -g -DWLR_USE_UNSTABLE `pkg-config --cflags wlroots-0.19 wayland-server pixman-1 libpng` -LDFLAGS = `pkg-config --libs wlroots-0.19 wayland-server pixman-1 libpng` - -all: panes - -panes: main.c - $(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS)