initial commit

Signed-off-by: Kljunas2 <miha@korenjak.si>
This commit is contained in:
2022-04-27 14:13:32 +02:00
commit e25cc5924f
5 changed files with 125 additions and 0 deletions

11
Makefile Normal file
View File

@@ -0,0 +1,11 @@
CC = gcc
RM = rm
BINARY = activate-linux
CFLAGS = $(shell pkg-config --cflags --libs gtk+-3.0 gtk-layer-shell-0)
activate-linux:
$(CC) src/activate_linux.c -o bin/$(BINARY) $(CFLAGS)
.PHONY: clean
clean:
$(RM) -rf bin/