diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2001-02-25 10:16:25 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2001-02-25 10:16:25 +0000 |
commit | 9b0e7f3d0293fa5bfb4e7472eb833fc4289aeb86 (patch) | |
tree | a52e81672da6827292ded4cb953d585e352ce65c /emulators/vmware3 | |
parent | Reference _flockfile to ensure that the linuxthreads version is used. (diff) |
As our new bsd.kmod.mk doesn't seemt to support "make clean all",
do "make clean && make" instead.
This should fix the build on a recent CURRENT.
Notes
Notes:
svn path=/head/; revision=38692
Diffstat (limited to 'emulators/vmware3')
-rw-r--r-- | emulators/vmware3/files/Makefile.vmmon | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/emulators/vmware3/files/Makefile.vmmon b/emulators/vmware3/files/Makefile.vmmon index ad036c646530..ad418ac981a8 100644 --- a/emulators/vmware3/files/Makefile.vmmon +++ b/emulators/vmware3/files/Makefile.vmmon @@ -1,9 +1,12 @@ # $FreeBSD$ +MAKE_SMP= make -f Makefile.FreeBSD SMP=YES +MAKE_UP= make -f Makefile.FreeBSD SMP=NO + all: - make -f Makefile.FreeBSD SMP=YES clean all - make -f Makefile.FreeBSD SMP=NO clean all + ${MAKE_SMP} clean && ${MAKE_SMP} + ${MAKE_UP} clean && ${MAKE_UP} install: - make -f Makefile.FreeBSD SMP=YES install - make -f Makefile.FreeBSD SMP=NO install + ${MAKE_SMP} install + ${MAKE_UP} install |