Revision 026bbe52e0aa77eeb73532fb50078cd35c1cd5bf authored by Tom Quinn on 16 February 2018, 05:31:54 UTC, committed by Tom Quinn on 01 May 2018, 19:04:34 UTC
Change-Id: Ibf9b5ce825b14414bb765716f5361a80c79525fa
1 parent f9a522d
Raw File
Makefile
# Change the N here to make a new size dataset.
N=1000

testdata.tbin: ppartt Makefile
	./ppartt $N -.5 .5 -1 > testdata.tbin

testdata: ppartnc Makefile
	./ppartnc $N -.5 .5 -1 testdata

ppartt: ppartt.c tipsydefs.h
	$(CC) -o ppartt ppartt.c -lm

pgaspart: pgaspart.c tipsydefs.h
	$(CC) -o pgaspart pgaspart.c -lm

ppartnc: ppartnc.cpp
	$(CXX) -O3 -I../../utility/structures -o ppartnc ppartnc.cpp -lm

pgaspartnc: pgaspartnc.cpp
	$(CXX) -O3 -I../../utility/structures -o pgaspartnc pgaspartnc.cpp -lm

clean:
	-rm -rf pgaspart pgaspartnc ppartt ppartnc testdata.tbin testdata

back to top