src/utilities/Makefile
1include ../make.inc
2
3SOURCES_CC=Log.cxx PhotosRandom.cxx PhotosDebugRandom.cxx PhotosUtilities.cxx
4OBJECTS_CC=$(SOURCES_CC:.cxx=.o)
5
6%.o: %.cxx
7 $(CC) $(CFLAGS) $(DEBUG) -I. -I../photosCInterfaces -I../photos-C -I../eventRecordInterfaces -c $< -o $@
8
9all: $(OBJECTS_CC)
10
11clean:
12 rm -f *.o *~;