From 33163fb30686fdac5891ec860c19996ebec7683a Mon Sep 17 00:00:00 2001 From: David Vazgenovich Shakaryan Date: Mon, 4 Mar 2024 03:41:46 -0800 Subject: initial import --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..066d2ac --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +CFLAGS += -O2 -Wall -Wextra -Wpedantic +LDFLAGS += -lX11 + +TARGET := xlockkbd + +SRC := $(wildcard *.c) +OBJ := $(SRC:.c=.o) + +all: $(TARGET) + +$(TARGET): $(OBJ) + +clean: + rm -f $(TARGET) $(OBJ) + +.PHONY: all clean -- cgit v1.2.3-70-g09d2