mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
a86b5a4811
desktop's background image. Submitted by: Chris Stuart <firewolf@lightningfire.net>
25 lines
591 B
Plaintext
25 lines
591 B
Plaintext
--- Makefile.orig Thu Aug 8 01:30:52 2002
|
|
+++ Makefile Thu Aug 8 01:37:36 2002
|
|
@@ -19,16 +19,13 @@
|
|
|
|
OBJS = gkrellmbgchg.o
|
|
|
|
-all: gkrellmbgchg.so
|
|
-
|
|
gkrellmbgchg.so: $(OBJS)
|
|
$(CC) $(CFLAGS) $(OBJS) -o gkrellmbgchg.so $(LFLAGS) $(LIBS)
|
|
|
|
clean:
|
|
rm -f *.o core *.so* *.bak *~
|
|
-install: gkrellmbgchg.so
|
|
- $(INSTALL) -d $(HOME)/.gkrellm/plugins
|
|
- $(INSTALL) gkrellmbgchg.so $(HOME)/.gkrellm/plugins
|
|
-
|
|
-gkrellmbgchg.c.o: gkrellmbgchg.c
|
|
-
|
|
+install:
|
|
+ install -c -s gkrellmbgchg.so ${PREFIX}/libexec/gkrellm/plugins
|
|
+uninstall:
|
|
+ rm -rf $(PLUGIN_DIR)/gkrellmbgchg.so
|
|
+all: gkrellmbgchg.so
|