From 1aa94e896b007cd2eb1dacef5d386f47dd47b5df Mon Sep 17 00:00:00 2001 From: "scullin%netscape.com" Date: Tue, 21 Jul 1998 21:22:25 +0000 Subject: [PATCH] Added rules to install/clobber resource gifs. git-svn-id: svn://10.0.0.236/trunk@6107 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/network/module/Makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/mozilla/network/module/Makefile b/mozilla/network/module/Makefile index 1e998e71713..3d8298cd7ba 100644 --- a/mozilla/network/module/Makefile +++ b/mozilla/network/module/Makefile @@ -52,3 +52,25 @@ include $(DEPTH)/config/rules.mk $(LIBRARY): \ $(OBJS) +install:: + $(INSTALL) res/gopher-audio.gif $(DIST)/bin/res/network + $(INSTALL) res/gopher-binary.gif $(DIST)/bin/res/network + $(INSTALL) res/gopher-find.gif $(DIST)/bin/res/network + $(INSTALL) res/gopher-image.gif $(DIST)/bin/res/network + $(INSTALL) res/gopher-menu.gif $(DIST)/bin/res/network + $(INSTALL) res/gopher-movie.gif $(DIST)/bin/res/network + $(INSTALL) res/gopher-telnet.gif $(DIST)/bin/res/network + $(INSTALL) res/gopher-text.gif $(DIST)/bin/res/network + $(INSTALL) res/gopher-unknown.gif $(DIST)/bin/res/network + +clobber:: + rm -f $(DIST)/bin/res/network/gopher-audio.gif + rm -f $(DIST)/bin/res/network/gopher-binary.gif + rm -f $(DIST)/bin/res/network/gopher-find.gif + rm -f $(DIST)/bin/res/network/gopher-image.gif + rm -f $(DIST)/bin/res/network/gopher-menu.gif + rm -f $(DIST)/bin/res/network/gopher-movie.gif + rm -f $(DIST)/bin/res/network/gopher-telnet.gif + rm -f $(DIST)/bin/res/network/gopher-text.gif + rm -f $(DIST)/bin/res/network/gopher-unknown.gif +