diff options
author | Michael Haro <mharo@FreeBSD.org> | 2000-03-24 00:49:08 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 2000-03-24 00:49:08 +0000 |
commit | e4295c3e9db60e192ac5416db4cf87bad484941a (patch) | |
tree | da143ca23ab1c7d77acb5cef5b6937d089c5fc95 /misc | |
parent | update WWW and MASTER_SITES (diff) |
- Support CC/CFLAGS properly
- Support install macros
PR: 17528
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Notes
Notes:
svn path=/head/; revision=27002
Diffstat (limited to 'misc')
-rw-r--r-- | misc/qclock/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/misc/qclock/Makefile b/misc/qclock/Makefile index 69130385855f..1231e996477f 100644 --- a/misc/qclock/Makefile +++ b/misc/qclock/Makefile @@ -15,9 +15,10 @@ MAINTAINER= brett@peloton.runet.edu NO_WRKSUBDIR= yes -ALL_TARGET= qclock +do-build: + cd ${WRKSRC}; ${CC} ${CFLAGS} qclock.c -o qclock do-install: - ${CP} ${WRKDIR}/qclock ${PREFIX}/bin/qclock + ${INSTALL_PROGRAM} ${WRKDIR}/qclock ${PREFIX}/bin .include <bsd.port.mk> |