diff options
author | jhb <jhb@FreeBSD.org> | 2000-03-31 18:23:14 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2000-03-31 18:23:14 +0000 |
commit | 603e73a5c2c75eaed230b4745d7d5fec8dc4167d (patch) | |
tree | 88e96442dfaf06b0fdf160fe9e7056720875cb28 /x11/ebuttons/files/Makefile | |
parent | 9e06a0f27d7249bb616b5a4b026274ce3451dbbb (diff) | |
download | FreeBSD-ports-603e73a5c2c75eaed230b4745d7d5fec8dc4167d.zip FreeBSD-ports-603e73a5c2c75eaed230b4745d7d5fec8dc4167d.tar.gz |
E-Buttons is an epplet for Enlightenment that provides several buttons
that can be used to launch user applications simliar to the asbutton
utility for Afterstep.
Reviewed by: jim
Diffstat (limited to 'x11/ebuttons/files/Makefile')
-rw-r--r-- | x11/ebuttons/files/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/x11/ebuttons/files/Makefile b/x11/ebuttons/files/Makefile new file mode 100644 index 0000000..8066ac8 --- /dev/null +++ b/x11/ebuttons/files/Makefile @@ -0,0 +1,10 @@ +LIBS = -L${X11BASE}/lib -lepplet +CFLAGS += -I${X11BASE}/include + +all: E-Buttons.epplet + +E-Buttons.epplet: E-buttons.c + ${CC} ${CFLAGS} ${.ALLSRC} ${LIBS} -o ${.TARGET} + +clean: + rm -f E-Buttons.epplet E-buttons.epplet |