PtolemyGUI/frecsoTools/makefile

15 lines
195 B
Makefile
Raw Normal View History

2025-02-27 13:15:56 -05:00
CC = g++
CFLAG = -g -O0
depend = ClassIsotope.h constant.h potentials.h
ALL = test
all: $(ALL)
test: inFileCreator.cpp $(depend)
$(CC) $(CFLAG) test.cpp -o test
clean:
/bin/rm -f $(ALL)