diff options
author | Matthias Clasen <mclasen@redhat.com> | 2016-07-03 13:54:11 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2016-07-03 13:54:11 -0400 |
commit | 22b6df025e5c17c0576826ddea62590532b9ce15 (patch) | |
tree | c0ef28ba3e7afb11c823ca870d251ae694a4e8d0 /examples/application2 | |
parent | a43fce058c3cb69dcca24e58a89d6e0151a35216 (diff) | |
download | gtk+-22b6df025e5c17c0576826ddea62590532b9ce15.tar.gz |
Fix example Makefiles
Put OBJS before LIBS on the commandline to make things
work better.
https://bugzilla.gnome.org/show_bug.cgi?id=768142
Diffstat (limited to 'examples/application2')
-rw-r--r-- | examples/application2/Makefile.example | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/application2/Makefile.example b/examples/application2/Makefile.example index c6f82933cc..844fffdc17 100644 --- a/examples/application2/Makefile.example +++ b/examples/application2/Makefile.example @@ -18,7 +18,7 @@ resources.c: exampleapp.gresource.xml window.ui $(CC) -c -o $(@F) $(CFLAGS) $< exampleapp: $(OBJS) - $(CC) -o $(@F) $(LIBS) $(OBJS) + $(CC) -o $(@F) $(OBJS) $(LIBS) clean: rm -f $(BUILT_SRC) |