SOLARIS_Analysis/armory/Makefile

12 lines
213 B
Makefile
Raw Normal View History

2023-03-28 15:28:36 -04:00
CC=g++
2023-09-26 15:45:46 -04:00
CFLAG= -g
2023-03-28 15:28:36 -04:00
ROOTFLAG=`root-config --cflags --glibs`
all: EventBuilder
2023-09-26 15:45:46 -04:00
EventBuilder: EventBuilder.cpp SolReader.h Hit.h
$(CC) $(CFLAG) EventBuilder.cpp -o EventBuilder ${ROOTFLAG}
2023-03-28 15:28:36 -04:00
clean:
-rm EventBuilder