-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
73 lines (60 loc) · 1.64 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
#
# Copyright (c) 2015 Vladimir Alemasov
# All rights reserved
#
# This program and the accompanying materials are distributed under
# the terms of GNU General Public License version 2
# as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
TARGET = hc32l110-serial-boot
OBJDIR = obj
SRCDIR = src
SOURCES = $(wildcard $(SRCDIR)/*.c)
HEADERS = $(wildcard $(SRCDIR)/*.h)
OBJECTS = $(SOURCES:$(SRCDIR)/%.c=$(OBJDIR)/%.o)
DEPS = $(HEADERS)
INCLPATH = -I.
#LIBS = -lusb-1.0
CFLAGS := -g
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
LIBS += -lrt
endif
# Installation directories by convention
# http://www.gnu.org/prep/standards/html_node/Directory-Variables.html
PREFIX = /usr/local
EXEC_PREFIX = $(PREFIX)
BINDIR = $(EXEC_PREFIX)/bin
SYSCONFDIR = $(PREFIX)/etc
LOCALSTATEDIR = $(PREFIX)/var
# main goal
all: $(TARGET)
# target executable
$(TARGET): $(OBJECTS)
$(CC) $(LDFLAGS) -o $(TARGET) $(OBJECTS) $(LIBPATH) $(LIBS)
# object files
$(OBJECTS): $(OBJDIR)/%.o : $(SRCDIR)/%.c $(DEPS) | $(OBJDIR)
$(CC) $(CFLAGS) -c $< -o $@ $(INCLPATH)
# create object files directory
$(OBJDIR):
mkdir -p $(OBJDIR)
# clean
clean:
rm -rf $(OBJDIR)
# distclean
distclean: clean
rm -f $(TARGET)
# install
# http://unixhelp.ed.ac.uk/CGI/man-cgi?install
install: all
install -d -m 755 "$(BINDIR)"
install -m 755 $(TARGET) "$(BINDIR)/"
# uninstall
uninstall:
rm -f $(BINDIR)/$(TARGET)
.PHONY: all clean distclean install uninstall