mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-23 15:00:02 +02:00
10 lines
203 B
Makefile
10 lines
203 B
Makefile
CC=gcc
|
|
CFLAGS= -g -c -W -lstdc++
|
|
|
|
ROOTINCLUDE=$(ROOTSYS)/include
|
|
|
|
energyCalibration.o: energyCalibration.cpp
|
|
$(CC) $(CFLAGS) energyCalibration.cpp -I $(ROOTINCLUDE)
|
|
|
|
clean:
|
|
rm -f energyCalibration.o
|