-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
77 lines (67 loc) · 2.65 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
# MSPDebug - debugging tool for the eZ430
# Copyright (C) 2009, 2010 Daniel Beer
# Copyright (C) 2010 Andrew Armenia
# Copyright (C) 2011 Steven Bytnar
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# 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.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
CC = gcc
INSTALL = /usr/bin/install
PREFIX ?= /usr/local
LDFLAGS ?= -s
ifdef WITHOUT_READLINE
READLINE_CFLAGS =
READLINE_LIBS =
else
READLINE_CFLAGS = -DUSE_READLINE
READLINE_LIBS = -lreadline
endif
UNAME := $(shell sh -c 'uname -s')
ifeq ($(UNAME),Darwin) # Mac OS X/MacPorts stuff
#PORTS_CFLAGS = -I/opt/local/include -Wall -pedantic
#PORTS_LDFLAGS = -L/opt/local/lib -lelf
PORTS_CFLAGS = `pkg-config --clfags libelf` -Wall -pedantic
PORTS_LDFLAGS = `pkg-config --libs libelf`
else
ifeq ($(UNAME),OpenBSD) # OpenBSD Ports stuff
PORTS_CFLAGS = `pkg-config --cflags libelf libusb`
PORTS_LDFLAGS = `pkg-config --libs libelf libusb` -ltermcap
else
PORTS_CFLAGS =
PORTS_LDFLAGS =
endif
endif
#MSPDEBUG_CFLAGS = -O1 -Wall -Wno-char-subscripts -ggdb
MSPDEBUG_CFLAGS = -O1 -Wall -Wno-char-subscripts -g
# Note: -O2 causes the symbol table to not be readable.
# Note: On Mac OS X, -ggdb doesn't produce a debuggable binary.
all: mspdebug
clean:
/bin/rm -f *.o
/bin/rm -f mspdebug
install: mspdebug mspdebug.man
mkdir -p $(DESTDIR)$(PREFIX)/bin
mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1
$(INSTALL) -m 0755 mspdebug $(DESTDIR)$(PREFIX)/bin/mspdebug
$(INSTALL) -m 0644 mspdebug.man $(DESTDIR)$(PREFIX)/share/man/man1/mspdebug.1
.SUFFIXES: .c .o
mspdebug: main.o fet.o rf2500.o dis.o uif.o olimex.o ihex.o elf32.o stab.o \
util.o bsl.o sim.o symmap.o gdb.o btree.o rtools.o sym.o devcmd.o \
reader.o vector.o output_util.o expr.o fet_error.o binfile.o \
fet_db.o usbutil.o titext.o srec.o device.o coff.o opdb.o output.o \
cmddb.o stdcmd.o prog.o flash_bsl.o list.o simio.o simio_tracer.o \
simio_timer.o simio_wdt.o simio_hwmult.o simio_gpio.o aliasdb.o
$(CC) $(LDFLAGS) $(PORTS_LDFLAGS) -o $@ $^ -lusb $(READLINE_LIBS)
.c.o:
$(CC) $(CFLAGS) $(PORTS_CFLAGS) $(READLINE_CFLAGS) $(MSPDEBUG_CFLAGS) -o $@ -c $*.c