diff options
author | obrien <obrien@FreeBSD.org> | 2001-05-01 01:25:09 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-05-01 01:25:09 +0800 |
commit | ab282a85fcf11572edab5d9c44155e56915e24ab (patch) | |
tree | a0c212330391d49052662e6b75d156300f6ff0ca /devel | |
parent | 7157ae0f59b6b4ab5b73e9b1854fca717c42a2aa (diff) | |
download | freebsd-ports-gnome-ab282a85fcf11572edab5d9c44155e56915e24ab.tar.gz freebsd-ports-gnome-ab282a85fcf11572edab5d9c44155e56915e24ab.tar.zst freebsd-ports-gnome-ab282a85fcf11572edab5d9c44155e56915e24ab.zip |
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 320b6692179e..7d992264e100 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 |