diff options
author | obrien <obrien@FreeBSD.org> | 2001-04-30 17:25:09 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-04-30 17:25:09 +0000 |
commit | ab282a85fcf11572edab5d9c44155e56915e24ab (patch) | |
tree | a0c212330391d49052662e6b75d156300f6ff0ca /devel | |
parent | 7157ae0f59b6b4ab5b73e9b1854fca717c42a2aa (diff) | |
download | FreeBSD-ports-ab282a85fcf11572edab5d9c44155e56915e24ab.zip FreeBSD-ports-ab282a85fcf11572edab5d9c44155e56915e24ab.tar.gz |
I don't know of any UNIX make(1) that does not define a useful $(CC).
Diffstat (limited to 'devel')
-rw-r--r-- | devel/libshhopt/files/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/libshhopt/files/Makefile b/devel/libshhopt/files/Makefile index 320b669..7d99226 100644 --- a/devel/libshhopt/files/Makefile +++ b/devel/libshhopt/files/Makefile @@ -1,8 +1,8 @@ +# $FreeBSD$ + PREFIX = /usr/local LIBDIR = $(PREFIX)/lib INCDIR = $(PREFIX)/include -CC = gcc - example: $(CC) -o example example.c -I$(INCDIR) -L$(LIBDIR) -lshhopt |