Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
# This program is free software: you can redistribute it and/or modify it under
# the terms of the BSD 3-Clause license. See the accompanying LICENSE file.

.PHONY: all clean

all:
cd src/; make -f Makefile.generic -j; cd ..;
cd test-self; make -f Makefile.generic -j; cd ..;
cd test-cblas; make -f Makefile.generic -j; cd ..;
cd test-blaspp; make -f Makefile.generic -j; cd ..;
$(MAKE) -C src -f Makefile.generic
$(MAKE) -C test-self -f Makefile.generic
$(MAKE) -C test-cblas -f Makefile.generic
$(MAKE) -C test-blaspp -f Makefile.generic
clean:
cd src/; make -f Makefile.generic clean; cd ..;
cd test-self; make -f Makefile.generic clean; cd ..;
cd test-cblas; make -f Makefile.generic clean; cd ..;
cd test-blaspp; make -f Makefile.generic clean; cd ..;
$(MAKE) -C src -f Makefile.generic $@
$(MAKE) -C test-self -f Makefile.generic $@
$(MAKE) -C test-cblas -f Makefile.generic $@
$(MAKE) -C test-blaspp -f Makefile.generic $@
1 change: 1 addition & 0 deletions src/Makefile.generic
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

include ../Makefile.generic.inc

.PHONY: all clean tar

## dependencies

Expand Down
2 changes: 2 additions & 0 deletions test-blaspp/Makefile.generic
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ OBJS = $(SRCS:%.cc=%.o)
CXXFLAGS += -I$(TESTSWEEPER)
EXEC = tester

.PHONY: all clean

all: $(EXEC)

tester: $(OBJS)
Expand Down
2 changes: 2 additions & 0 deletions test-cblas/Makefile.generic
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ OBJS = $(SRCS:%.cc=%.o)
CXXFLAGS += -I$(TESTSWEEPER)
EXEC = tester

.PHONY: all clean

all: $(EXEC)

tester: $(OBJS)
Expand Down
2 changes: 2 additions & 0 deletions test-self/Makefile.generic
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ SRCS = mixedp_add_test.cpp \
OBJS = $(SRCS:%.cpp=%.o)
EXEC = $(SRCS:%.cpp=%)

.PHONY: all clean

all: $(EXEC)

mixedp_add_test.o : mixedp_add_test.cpp test_util.hpp
Expand Down