Update Makefile

This commit is contained in:
Cory Balaton 2023-10-31 10:51:16 +01:00
parent 8e1e5ae024
commit 53b99a8feb
No known key found for this signature in database
GPG Key ID: 3E5FCEBFD80F432B

View File

@ -1,9 +1,9 @@
CC=g++
LIBSRCS=utils.cpp
LIBSRCS=utils.cpp testlib.cpp
LIBOBJS=$(LIBSRCS:.cpp=.o)
CLASSSRCS=PenningTrap.cpp Particle.cpp
CLASSSRCS=IsingModel.cpp
CLASSOBJS=$(CLASSSRCS:.cpp=.o)
INCLUDE=../include
@ -30,7 +30,8 @@ endif
.PHONY: clean
all: test_suite main frequency_narrow_sweeps_long
all: test_suite main
#all: main
# Instrumentation using scorep for parallel analysis
instrument: