diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2001-10-10 02:50:21 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2001-10-10 02:50:21 +0000 |
commit | 67fe376f99395fa53da26d7613b0e9d2b90ecdfd (patch) | |
tree | 8f2f8b1e7fcbd54f26bfc05d0701bc663e5a8476 /sysutils/wmzazof/files/patch-Makefile | |
parent | add inilib (diff) |
New port wmzazof version 0.3: A simple dockapp that displays the
uptime, free and used memory
PR: 31091
Submitted by: Patrick Li <pat@databits.net>
Notes
Notes:
svn path=/head/; revision=48638
Diffstat (limited to 'sysutils/wmzazof/files/patch-Makefile')
-rw-r--r-- | sysutils/wmzazof/files/patch-Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sysutils/wmzazof/files/patch-Makefile b/sysutils/wmzazof/files/patch-Makefile new file mode 100644 index 000000000000..0511212d52ce --- /dev/null +++ b/sysutils/wmzazof/files/patch-Makefile @@ -0,0 +1,23 @@ +--- Makefile.orig Sat Oct 6 15:46:35 2001 ++++ Makefile Sat Oct 6 18:52:19 2001 +@@ -1,13 +1,15 @@ +-CC = gcc +-CFLAGS = -O2 -Wall -fomit-frame-pointer -s +-INCDIR = -I/usr/X11R6/include/X11 +-DESTDIR= /usr/bin +-LIBDIR = -L/usr/X11R6/lib ++INCDIR = -I${X11BASE}/include/X11 -I${X11BASE}/include ++LIBDIR = -L${X11BASE}/lib + LIBS = -ldockapp -lX11 -lXext -lXpm + OBJS = wmzazof.o + ++all: wmzazof ++ + wmzazof: $(OBJS) + $(CC) $(CFLAGS) $(OBJS) -o wmzazof $(INCDIR) $(LIBDIR) $(LIBS) ++ ++.c.o: ++ $(CC) -c -o wmzazof.o wmzazof.c $(CFLAGS) $(INCDIR) + + install: wmzazof + strip wmzazof |