Make Makefile better

master
Nakidai 2024-11-19 03:40:43 +03:00
parent 1679aefc45
commit 6790d854b8
Signed by: nakidai
GPG Key ID: C6BF6082F42307C0
1 changed files with 1 additions and 3 deletions

View File

@ -1,4 +1,5 @@
PREFIX ?= /usr
LDLIBS = -lX11 -lxkbfile
all: getlayout
@ -8,7 +9,4 @@ install: getlayout
clean:
rm -f getlayout
getlayout:
cc -lX11 -lxkbfile getlayout.c -o getlayout
.PHONY: all install clean