Update Makefile

This commit is contained in:
Martin Kroeker 2021-02-14 22:41:28 +01:00 committed by GitHub
parent 738f1b84c7
commit 09fb78fe29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -14,7 +14,7 @@
# Some examples: # Some examples:
# make single # make single
# make single complex # make single complex
# make single double complex complex16 # make single double complex complex16
# Alternatively, the command # Alternatively, the command
# make # make
# without any arguments runs all eight test programs. # without any arguments runs all eight test programs.
@ -36,6 +36,9 @@
TOPSRCDIR = .. TOPSRCDIR = ..
include $(TOPSRCDIR)/make.inc include $(TOPSRCDIR)/make.inc
FFLAGS := $(filter-out -frecursive -Mrecursive,$(FFLAGS))
FFLAGS_DRV := $(filter-out -frecursive -Mrecursive,$(FFLAGS_DRV))
LDFLAGS := $(filter-out -frecursive -Mrecursive,$(LDFLAGS))
.PHONY: all .PHONY: all
all: single complex double complex16 singleproto doubleproto complexproto complex16proto all: single complex double complex16 singleproto doubleproto complexproto complex16proto