mirror of
https://github.com/nmap/nmap.git
synced 2025-12-09 22:21:29 +00:00
svn merge --ignore-ancestry svn://svn.insecure.org/nmap@26621 svn://svn.insecure.org/nmap-exp/luis/nmap-os6 This is the IPv6 OS detection branch. "nmap -6 -O" works now, though at this point it only prints fingerprints and not OS guesses, because we need to collect more submissions.
23 lines
300 B
Makefile
23 lines
300 B
Makefile
AR = ar rcv
|
|
RANLIB = ranlib
|
|
|
|
HEADERS = blas.h blas.h blasp.h
|
|
FILES = dnrm2.o daxpy.o ddot.o dscal.o
|
|
|
|
CFLAGS = $(OPTFLAGS)
|
|
FFLAGS = $(OPTFLAGS)
|
|
|
|
blas: $(FILES) $(HEADERS)
|
|
$(AR) blas.a $(FILES)
|
|
$(RANLIB) blas.a
|
|
|
|
clean:
|
|
- rm -f *.o
|
|
- rm -f *.a
|
|
- rm -f *~
|
|
|
|
.c.o:
|
|
$(CC) $(CFLAGS) -c $*.c
|
|
|
|
|