forked from AuroraMiddleware/gtk
803ae6a62f
We dropped the '+' and the major.minor version from the pkg-config file name.
21 lines
351 B
Makefile
21 lines
351 B
Makefile
CC ?= gcc
|
|
PKGCONFIG = $(shell which pkg-config)
|
|
CFLAGS = $(shell $(PKGCONFIG) --cflags gtk4)
|
|
LIBS = $(shell $(PKGCONFIG) --libs gtk4)
|
|
|
|
SRC = main.c exampleapp.c exampleappwin.c
|
|
|
|
OBJS = $(SRC:.c=.o)
|
|
|
|
all: exampleapp
|
|
|
|
%.o: %.c
|
|
$(CC) -c -o $(@F) $(CFLAGS) $<
|
|
|
|
exampleapp: $(OBJS)
|
|
$(CC) -o $(@F) $(OBJS) $(LIBS)
|
|
|
|
clean:
|
|
rm -f $(OBJS)
|
|
rm -f exampleapp
|