Skip to content
Snippets Groups Projects
Commit b84b4dab authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Simplified Makefile generated by tnl-quickstart.

parent 5bfdbe9f
No related branches found
No related tags found
No related merge requests found
# Uncomment the following line to enable CUDA
#WITH_CUDA = yes
TARGET = {problemBaseName}
INSTALL_DIR = ${{HOME}}/local
......@@ -16,11 +13,12 @@ endif
SOURCES = {problemBaseName}.cpp
HEADERS = {problemBaseName}.h
OBJECTS = {problemBaseName}.o
DIST = $(SOURCES) $(CUDA_SOURCES) $(HEADERS) Makefile
ifdef WITH_CUDA
OBJECTS = {problemBaseName}-cuda.o
else
OBJECTS = {problemBaseName}.o
endif
all: $(TARGET)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment