mirror of
https://github.com/VictorEijkhout/TheArtOfHPC_vol3_cppf08programming.git
synced 2026-01-24 22:44:48 +09:00
39 lines
871 B
Makefile
39 lines
871 B
Makefile
# -*- makefile -*-
|
|
################################################################
|
|
####
|
|
#### This makefile is part of the course
|
|
#### Introduction to Scientific Programming in C++ and Fortran
|
|
#### by Victor Eijkhout (eijkhout@tacc.utexas.edu)
|
|
#### copyright 2017-2021 Victor Eijkhout
|
|
####
|
|
#### Custom allocators
|
|
####
|
|
################################################################
|
|
|
|
PROGRAMS = alignmabille
|
|
WRONGS = alignchristos align17 pmr
|
|
|
|
LANGUAGE = CXX
|
|
CPPSTANDARD = 17
|
|
include ../Make.inc
|
|
|
|
.PHONY: run_mabille
|
|
RUNS += run_mabille
|
|
mabille : alignmabille
|
|
run_mabille : alignmabille
|
|
@./alignmabille
|
|
|
|
.PHONY: run_christos
|
|
## RUNS += run_christos
|
|
christos : alignchristos
|
|
run_christos : alignchristos
|
|
@./alignchristos
|
|
|
|
.PHONY: run_align17
|
|
## RUNS += run_align17
|
|
run_align17 : align17
|
|
@./align17
|
|
|
|
include ../../makefiles/Make.cmake
|
|
include ../../makefiles/Make.clean
|