summaryrefslogtreecommitdiff
path: root/Makefile
blob: 066d2ace9f6b6de040f22ee069d0ad01fb093693 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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