summaryrefslogtreecommitdiff
path: root/Makefile
blob: 8278faf732e217d5608167e37c3bb6be26fd4b70 (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 := xkbdlock

SRC := $(wildcard *.c)
OBJ := $(SRC:.c=.o)

all: $(TARGET)

$(TARGET): $(OBJ)

clean:
	rm -f $(TARGET) $(OBJ)

.PHONY: all clean