A tool to construct HDR-images from a series of exposures.

123456789101112131415161718
  1. CFLAGS += $$(pkg-config gtk+-3.0 --cflags)
  2. CXXFLAGS= -std=c++98 -pedantic -Wall -O3
  3. LIBS= $$(pkg-config gtk+-3.0 --libs)
  4. OBJS= haader.o image.o exif.o csv_reader.o
  5. haader_gtk: main.cpp $(OBJS)
  6. $(CXX) main.cpp -o haader_gtk -I../include $(OBJS) $(CXXFLAGS) $(CFLAGS) $(LIBS)
  7. run: haader_gtk
  8. ./haader_gtk
  9. %.o: ../src/%.cpp ../include/%.h
  10. $(CXX) $< -c -o $@ -I../include $(CFLAGS) $(CXXFLAGS)
  11. clean:
  12. rm -f haader_gtk $(OBJS)
  13. .PHONY: run clean