This repository has been archived on 2024-08-25. You can view files and clone it, but cannot push or open issues or pull requests.
GtkLoadSpinner/Makefile

13 lines
221 B
Makefile

CC := gcc
CFLAGS := $(shell pkg-config --cflags gtk+-3.0)
LIBS := $(shell pkg-config --libs gtk+-3.0)
TARGET := loadspinner
all: $(TARGET)
$(TARGET): spinner.c
$(CC) -o $@ $< $(CFLAGS) $(LIBS)
clean:
rm -f $(TARGET)