1PLUGINOBJECTS = ofxsThreadSuite.o tinythread.o \
2CImgHistEQ.o \
3CImgFilter.o \
4ofxsLut.o
5
6# no ofxsInteract.o
7SUPPORTOBJECTS = \
8ofxsMultiThread.o \
9ofxsProperty.o \
10ofxsLog.o \
11ofxsCore.o \
12ofxsPropertyValidation.o \
13ofxsImageEffect.o \
14ofxsParams.o
15
16PLUGINNAME = CImgHistEQ
17
18# ls *png *.svg|sort |sed -e 's!$! \\!'
19RESOURCES = \
20net.sf.cimg.CImgHistEQ.png \
21net.sf.cimg.CImgHistEQ.svg \
22
23TOP_SRCDIR = ../..
24include $(TOP_SRCDIR)/Makefile.master
25
26VPATH += $(TOP_SRCDIR)/CImg
27CXXFLAGS += -I$(TOP_SRCDIR)/CImg
28
29$(OBJECTPATH)/CImgHistEQ.o: CImgHistEQ.cpp  CImg.h
30
31CImg.h:
32	cd .. && $(MAKE) $@
33