summaryrefslogtreecommitdiff
path: root/Makefile
blob: d45f683b3dc17aeec20df9b56fdb2f9f5187c668 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74

includedir ?= /usr/include
libdir ?= /usr/lib

CFLAGS += -Werror

LIBS := -lmts -lpthread

OBJS += \
Version.o \
main.o

CPP_DEPS += \
Version.d \
main.d


all: postbuild

prebuild:
	@echo PRE-BUILD
	@echo 'Removing previous version components started'
	-$(RM) Version.o
	-$(RM) Version.d
	-$(RM) Version.cpp
	@echo 'Removing previous version components complete'
	@echo ' '
	
postbuild: mainbuild
	@echo POST-BUILD
	@echo ' '

mainbuild: prebuild
	@echo MAIN-BUILD
	@$(MAKE) --no-print-directory target

target: $(OBJS)
	@echo 'Building target: $@'
	$(CXX) $(CFLAGS) $(LDFLAGS) -o lora-query $(OBJS) $(LIBS)
	@echo 'Finished building target: $@'
	@echo ' '

Version.o: Version.cpp
	@echo 'Building file: $<'
	$(CXX) $(CFLAGS) -Iinclude -Wall -Werror -c -std=c++0x -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
	@echo 'Finished building: $<'
	@echo ' '

Version.cpp:
	@echo 'Creating file: Version.cpp'
	/bin/echo -e "//Pre-Build Auto-Generated Source\n#include \"Version.h\"\n\nconst std::string Version::version(\"$(shell git describe)\");" > Version.cpp
	@echo 'Finished creating: Version.cpp'
	@echo ' '

main.o: main.cpp
	@echo 'Building file: $<'
	$(CXX) $(CFLAGS) -I=$(includedir)/jsoncpp -Wall -c -std=c++0x -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
	@echo 'Finished building: $<'
	@echo ' '

install:
	install -d $(DESTDIR)/usr/bin
	install -m 0755 lora-query $(DESTDIR)/usr/bin

strip:
	$(STRIP) lora-query

clean:
	-$(RM) $(OBJS) $(CPP_DEPS) lora-query
	-@echo ' '

.PHONY: all clean dependents install strip target
.SECONDARY: