mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-17 14:30:15 +00:00
c55c18c23e
Remove all the built files, including the exampleapp binary.
21 lines
344 B
Makefile
21 lines
344 B
Makefile
CC = gcc
|
|
PKGCONFIG = $(shell which pkg-config)
|
|
CFLAGS = `$(PKGCONFIG) --cflags gtk+-3.0`
|
|
LIBS = `$(PKGCONFIG) --libs gtk+-3.0`
|
|
|
|
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) $(LIBS) $(OBJS)
|
|
|
|
clean:
|
|
rm -f $(OBJS)
|
|
rm -f exampleapp
|