1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-04 13:49:03 +00:00

Use $(MAKE) instead of make for systems that need gmake.

This commit is contained in:
david
2011-09-21 07:31:33 +00:00
parent 22ebd46baa
commit 3efe011acc

View File

@@ -29,7 +29,7 @@ linear.o: linear.cpp linear.h
$(CXX) $(CFLAGS) -c -o linear.o linear.cpp
blas/blas.a:
cd blas; make OPTFLAGS='$(CFLAGS)' CC='$(CC)';
cd blas; $(MAKE) OPTFLAGS='$(CFLAGS)' CC='$(CC)';
clean:
cd blas; make clean