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
|
# Makefile hex2bin/mot2bin
SRCDIR = src
BINDIR = bin
OBJDIR = obj
TGTDIR = $(BINDIR)
B_SRCFILES= $(foreach F, hex2bin.c common.c libcrc.c binary.c, $(SRCDIR)/$(F))
B_OBJFILES= $(foreach F, hex2bin.o common.o libcrc.o binary.o, $(OBJDIR)/$(F))
M_SRCFILES= $(foreach F, mot2bin.c common.c libcrc.c binary.c, $(SRCDIR)/$(F))
M_OBJFILES= $(foreach F, mot2bin.o common.o libcrc.o binary.o, $(OBJDIR)/$(F))
# For generating documentation (hex2bin.1, select the second line)
# -- You will require pod2man installed for this to work
TGT_FILES = $(foreach F, hex2bin mot2bin, $(TGTDIR)/$(F))
#TGT_FILES = $(foreach F, hex2bin mot2bin hex2bin.1, $(TGTDIR)/$(F))
CPFLAGS = -std=gnu99 -O3 -fsigned-char -Wall -pedantic
# Compile
all: objectdir $(TGT_FILES)
ifeq ($(OS),Windows_NT)
TARGET = hex2bin.exe
else
TARGET = hex2bin
endif
$(OBJDIR)/%.o: $(SRCDIR)/%.c
gcc -c $(CPFLAGS) $< -o $@
objectdir:
@echo "Creating directory $(OBJDIR)..."
mkdir -p $(OBJDIR)
$(TGTDIR)/hex2bin.1: $(SRCDIR)/hex2bin.pod
pod2man $(SRCDIR)/hex2bin.pod > $(TGTDIR)/hex2bin.1
$(TGTDIR)/hex2bin: $(B_OBJFILES)
gcc $(CPFLAGS) -o $(TGTDIR)/hex2bin $(B_OBJFILES)
cp bin/$(TARGET) ../../bin
$(TGTDIR)/mot2bin: $(M_OBJFILES)
gcc $(CPFLAGS) -o $(TGTDIR)/mot2bin $(M_OBJFILES)
clean:
@echo "Removing objects directory $(OBJDIR)/ ..."
@rm -rf $(OBJDIR)
cleanall: clean
@echo "Removing binary files in $(BINDIR)/ ..."
@rm -f $(BINDIR)/*
|