diff options
author | danfe <danfe@FreeBSD.org> | 2007-11-11 07:24:40 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2007-11-11 07:24:40 +0800 |
commit | a524f5347a7b35aad434d4006af85ab040d2b24d (patch) | |
tree | cad5d3d8dabf3567b18b13c0b8e66221ebdbcaad /games | |
parent | ed0a32fd94ae49be3b358e0b9ef7ef4bd7f2be92 (diff) | |
download | freebsd-ports-gnome-a524f5347a7b35aad434d4006af85ab040d2b24d.tar.gz freebsd-ports-gnome-a524f5347a7b35aad434d4006af85ab040d2b24d.tar.zst freebsd-ports-gnome-a524f5347a7b35aad434d4006af85ab040d2b24d.zip |
Fix the build of slave port, `games/qwdtools'.
Approved by: portmgr (linimon)
Diffstat (limited to 'games')
-rw-r--r-- | games/mvdsv/files/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/games/mvdsv/files/Makefile b/games/mvdsv/files/Makefile index c1f6bf109027..1fe73a451a1a 100644 --- a/games/mvdsv/files/Makefile +++ b/games/mvdsv/files/Makefile @@ -108,6 +108,8 @@ QWDTOOLS_AS_OBJS = \ bothtoolsa.o .endif +QWDTOOLS_LIBS = -lm + ######################################################################## .c.o: @@ -123,7 +125,7 @@ mvdsv: ${SV_OBJS} ${SV_AS_OBJS} .PHONY qwdtools: ${QWDTOOLS_OBJS} ${QWDTOOLS_AS_OBJS} .PHONY ${CC} ${CFLAGS} -o ../qwdtools ${QWDTOOLS_OBJS} \ - ${QWDTOOLS_AS_OBJS} + ${QWDTOOLS_AS_OBJS} ${QWDTOOLS_LIBS} clean: -rm -f *.o *.core |