diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2014-12-06 13:30:24 +0000 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2014-12-06 13:30:24 +0000 |
commit | c55c18c23e58885003039484fd3d4d22b783bc3e (patch) | |
tree | 4c7277ed8b105a6c91bc266224caf369c11e843b /examples/application5 | |
parent | f718bc9bc92c2d0a87a320e333766fa4f67767e5 (diff) | |
download | gtk+-c55c18c23e58885003039484fd3d4d22b783bc3e.tar.gz |
examples: Fix clean rule in stand alone Makefiles
Remove all the built files, including the exampleapp binary.
Diffstat (limited to 'examples/application5')
-rw-r--r-- | examples/application5/Makefile.example | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/application5/Makefile.example b/examples/application5/Makefile.example index a5ab302008..ecfbe29473 100644 --- a/examples/application5/Makefile.example +++ b/examples/application5/Makefile.example @@ -27,7 +27,8 @@ exampleapp: $(OBJS) gschemas.compiled $(CC) -o $(@F) $(LIBS) $(OBJS) clean: - rm -f org.gtk.exampleapp.gschema.xml.valid + rm -f org.gtk.exampleapp.gschema.valid rm -f gschemas.compiled rm -f resources.c rm -f $(OBJS) + rm -f exampleapp |