mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-17 08:01:36 +00:00
7fabf25c54
DeskMenu is a root menu program which is activated by clicking the root window (by default, 2nd mouse button). This gtk+ program is complementary to the Oroborus window manager. PR: ports/35060 Submitted by: Matt Peterson <matt@peterson.org>
32 lines
807 B
Plaintext
32 lines
807 B
Plaintext
--- Makefile.orig Sun Jan 19 15:41:43 2003
|
|
+++ Makefile Sun Jan 19 15:42:30 2003
|
|
@@ -1,8 +1,7 @@
|
|
-CC = gcc
|
|
-CFLAGS = -g -O2 -Wall `gtk-config --cflags`
|
|
-XROOT = /usr/X11
|
|
+CFLAGS = -g -O2 -Wall `gtk12-config --cflags`
|
|
+XROOT = ${X11BASE}
|
|
INCLUDES = -I$(XROOT)/include
|
|
-LIBS = -lX11 `gtk-config --libs`
|
|
+LIBS = -lX11 `gtk12-config --libs`
|
|
LDPATH = -L$(XROOT)/lib
|
|
|
|
PROG = deskmenu
|
|
@@ -10,7 +9,6 @@
|
|
RCFILE = -DRCFILE=\".deskmenurc\"
|
|
DEBUG = #-DDEBUG
|
|
DEFINES = $(RCFILE) $(DEBUG)
|
|
-PREFIX = /usr
|
|
|
|
OBJS = $(PROG).o popup.o workspaces.o windows.o
|
|
|
|
@@ -23,7 +21,7 @@
|
|
$(CC) $(CFLAGS) $(DEFINES) $(INCLUDES) -c $< -o $@
|
|
|
|
install: all
|
|
- install $(PROG) $(PREFIX)/bin
|
|
+ $(BSD_INSTALL_PROGRAM) $(PROG) $(PREFIX)/bin
|
|
|
|
clean:
|
|
rm -f $(PROG) $(OBJS)
|