forked from AuroraMiddleware/gtk
22b6df025e
Put OBJS before LIBS on the commandline to make things work better. https://bugzilla.gnome.org/show_bug.cgi?id=768142
21 lines
359 B
Makefile
21 lines
359 B
Makefile
CC ?= gcc
|
|
PKGCONFIG = $(shell which pkg-config)
|
|
CFLAGS = $(shell $(PKGCONFIG) --cflags gtk+-3.0)
|
|
LIBS = $(shell $(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) $(OBJS) $(LIBS)
|
|
|
|
clean:
|
|
rm -f $(OBJS)
|
|
rm -f exampleapp
|