diff options
author | sobomax <sobomax@FreeBSD.org> | 2000-06-23 21:14:38 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2000-06-23 21:14:38 +0800 |
commit | d2d01acd2f19dfb9a978a3b8ee0b73a92ad27282 (patch) | |
tree | 1a8788dbef15004f9172aea15476e6b4d38e56e5 /sysutils/asmon/files | |
parent | 955cd44a9ec962c994b3a1231c9229e0e7427b7f (diff) | |
download | freebsd-ports-gnome-d2d01acd2f19dfb9a978a3b8ee0b73a92ad27282.tar.gz freebsd-ports-gnome-d2d01acd2f19dfb9a978a3b8ee0b73a92ad27282.tar.zst freebsd-ports-gnome-d2d01acd2f19dfb9a978a3b8ee0b73a92ad27282.zip |
- Use MASTER_SITE_AFTERSTEP to MASTER_SITES
PR: 19468
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Diffstat (limited to 'sysutils/asmon/files')
-rw-r--r-- | sysutils/asmon/files/patch-aa | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysutils/asmon/files/patch-aa b/sysutils/asmon/files/patch-aa index 390d9c3b0817..3fde759d3512 100644 --- a/sysutils/asmon/files/patch-aa +++ b/sysutils/asmon/files/patch-aa @@ -3,7 +3,7 @@ *************** *** 0 **** --- 1,20 ---- -+ LIBDIR = -L/usr/X11R6/lib ++ LIBDIR = -L${X11BASE}/lib + LIBS = -lXpm -lXext -lX11 -lkvm + OBJS = asmon/asmon.o \ + wmgeneral/wmgeneral.o \ @@ -13,10 +13,10 @@ + all: asmon + + .c.o: -+ cc -c -Wall -I/usr/X11R6/include $< -o $*.o ++ $(CC) $(CFLAGS) -c -Wall -I${X11BASE}/include $< -o $*.o + + asmon: $(OBJS) -+ cc -o asmon/asmon $^ $(LIBDIR) $(LIBS) ++ $(CC) -o asmon/asmon $^ $(LIBDIR) $(LIBS) + + clean:: + for i in $(OBJS) ; do \ |