12 lines
223 B
Makefile
12 lines
223 B
Makefile
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/
|