| # -g produces debugging information |
| # -O3 maximum optimization |
| # -O0 no optimization, used for debugging |
| # -Wall enables most warnings |
| # -Werror treats warnings as errors |
| # -std=c++0x is the planned new c++ standard |
| # -std=c++98 is the 1998 c++ standard |
| CFLAGS += -O3 -Wall -fno-exceptions -pthread -MMD -DETCDIR=\"/etc\" -Ilibsensors |
| CXXFLAGS += -fno-rtti |
| ifeq ($(WERROR),1) |
| CFLAGS += -Werror |
| endif |
| # -s strips the binary of debug info |
| LDFLAGS += -s |
| LDFLAGS += -static |
| TARGET = gatord |
| C_SRC = $(wildcard mxml/*.c) $(wildcard libsensors/*.c) |
| CPP_SRC = $(wildcard *.cpp) |
| |
| all: $(TARGET) |
| |
| events.xml: events_header.xml $(wildcard events-*.xml) events_footer.xml |
| cat $^ > $@ |
| |
| include $(wildcard *.d) |
| include $(wildcard mxml/*.d) |
| |
| EventsXML.cpp: events_xml.h |
| ConfigurationXML.cpp: configuration_xml.h |
| |
| # Don't regenerate conf-lex.c or conf-parse.c |
| libsensors/conf-lex.c: ; |
| libsensors/conf-parse.c: ; |
| |
| %_xml.h: %.xml escape |
| ./escape $< > $@ |
| |
| %.o: %.c |
| $(GCC) -c $(CFLAGS) -o $@ $< |
| |
| %.o: %.cpp |
| $(CPP) -c $(CFLAGS) $(CXXFLAGS) -o $@ $< |
| |
| $(TARGET): $(CPP_SRC:%.cpp=%.o) $(C_SRC:%.c=%.o) |
| $(CPP) $(LDFLAGS) -o $@ $^ -lrt -pthread |
| |
| escape: escape.c |
| gcc $^ -o $@ |
| |
| clean: |
| rm -f *.d *.o mxml/*.d mxml/*.o libsensors/*.d libsensors/*.o $(TARGET) escape events.xml events_xml.h configuration_xml.h |