-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
81 lines (57 loc) · 1.34 KB
/
Makefile
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
75
76
77
78
79
80
###############################################################################
#
# fw2csv Makefile
# Generated by amyznikov Jan 26, 2012
#
###############################################################################
TARGET=fw2csv
all : $(TARGET)
prefix=/usr/local
install_dir=$(prefix)/bin
SOURCES = fw2csv.c
MODULES = $(foreach s,$(SOURCES),$(addsuffix .o,$(basename $(s))))
ifndef cc
cc=gcc
endif
###############################################################################
#
# GCC
#
ifeq ($(strip $(cc)),gcc)
# C preprocessor flags
CPPFLAGS=
# C Compiler and flags
CC=gcc
CFLAGS=-O3 -g0 $(DEFINES) $(INCLUDES)
# Loader Flags And Libraries
LD=$(CC)
LDFLAGS = $(CFLAGS)
LDLIBS +=
endif
###############################################################################
#
# ICC
#
ifeq ($(strip $(cc)),icc)
export LC_CTYPE=C
# C preprocessor flags
CPPFLAGS=
# C Compiler and flags
CC=icc
CFLAGS=-O3 -ftz $(DEFINES) $(INCLUDES)
# Loader Flags And Libraries
LD=$(CC)
LDFLAGS = $(CFLAGS)
LDLIBS +=
endif
###############################################################################
$(TARGET) : $(MODULES)
$(LD) $(LDFLAGS) -o $@ $(MODULES) $(LDLIBS) && strip --strip-all $(TARGET)
clean:
$(RM) $(MODULES)
distclean:
$(RM) $(MODULES) $(TARGET)
install: $(install_dir)
cp $(TARGET) $(install_dir)/
$(install_dir):
mkdir -p $(install_dir)