mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-01-16 08:09:21 +01: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
|