diff options
Diffstat (limited to 'tools/skintest')
-rw-r--r-- | tools/skintest/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/skintest/Makefile b/tools/skintest/Makefile index fe73388..0c0f43e 100644 --- a/tools/skintest/Makefile +++ b/tools/skintest/Makefile @@ -2,7 +2,7 @@ # Makefile for the GraphLCD tool showtext # --include ../../Make.config +include ../../Make.config PRGNAME = skintest @@ -32,11 +32,11 @@ $(PRGNAME): $(OBJS) $(CXX) $(CXXFLAGS) $(LDFLAGS) -rdynamic $(OBJS) $(LIBS) $(LIBDIRS) -lglcdgraphics -lglcddrivers -lglcdskin -lstdc++ -o $(PRGNAME) install: $(PRGNAME) - install -d $(BINDIR) - install -m 755 -o root -g root $(HAVE_STRIP) $(PRGNAME) $(BINDIR) + install -d $(DESTDIR)$(BINDIR) + install -m 755 $(HAVE_STRIP) $(PRGNAME) $(DESTDIR)$(BINDIR) uninstall: - rm -f $(BINDIR)/$(PRGNAME) + rm -f $(DESTDIR)$(BINDIR)/$(PRGNAME) clean: @-rm -f $(OBJS) $(DEPFILE) $(PRGNAME) *~ |