annotate loadtools/Makefile @ 35:05af070c4b60

loadtool: preparations for dump2bin and dump2srec
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 05 May 2013 02:24:56 +0000
parents af6d763badfb
children 5da0cbee2b89
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8
acaac9162574 loadtools modules coming along
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
1 CC= gcc
acaac9162574 loadtools modules coming along
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
2 CFLAGS= -O2
23
aca1948e9713 loadtool: initial version compiles and links
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 22
diff changeset
3 PROGS= fc-loadtool fc-sertool
30
af6d763badfb loadtools: install target added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 29
diff changeset
4 SCRIPTS=scripts/pirelli.config scripts/pirelli.init
af6d763badfb loadtools: install target added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 29
diff changeset
5 INSTBIN=/usr/local/bin
af6d763badfb loadtools: install target added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 29
diff changeset
6 INSTSCR=/usr/local/share/freecalypso
9
fea204bc7674 fc-sertool compiles
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 8
diff changeset
7
17
24b88c119465 loadtools: hw parameter file reading implemented
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 9
diff changeset
8 SERTOOL_OBJS= defpath.o hexdecode.o hwparam.o romload.o sercomm.o sertool.o \
24b88c119465 loadtools: hw parameter file reading implemented
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 9
diff changeset
9 srecreader.o ttypassthru.o
8
acaac9162574 loadtools modules coming along
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
10
35
05af070c4b60 loadtool: preparations for dump2bin and dump2srec
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 30
diff changeset
11 LOADTOOL_OBJS= crc32tab.o defpath.o hexdecode.o hwparam.o ltdispatch.o \
05af070c4b60 loadtool: preparations for dump2bin and dump2srec
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 30
diff changeset
12 ltdump.o ltexit.o ltmain.o ltpassthru.o ltscript.o romload.o \
05af070c4b60 loadtool: preparations for dump2bin and dump2srec
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 30
diff changeset
13 sercomm.o srecreader.o tpinterf.o tpinterf2.o
21
67a39d8914a8 starting work on loadtool
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 17
diff changeset
14
23
aca1948e9713 loadtool: initial version compiles and links
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 22
diff changeset
15 all: ${PROGS}
9
fea204bc7674 fc-sertool compiles
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 8
diff changeset
16
fea204bc7674 fc-sertool compiles
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 8
diff changeset
17 fc-sertool: ${SERTOOL_OBJS}
fea204bc7674 fc-sertool compiles
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 8
diff changeset
18 ${CC} -o $@ ${SERTOOL_OBJS}
8
acaac9162574 loadtools modules coming along
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
19
23
aca1948e9713 loadtool: initial version compiles and links
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 22
diff changeset
20 fc-loadtool: ${LOADTOOL_OBJS}
aca1948e9713 loadtool: initial version compiles and links
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 22
diff changeset
21 ${CC} -o $@ ${LOADTOOL_OBJS}
aca1948e9713 loadtool: initial version compiles and links
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 22
diff changeset
22
30
af6d763badfb loadtools: install target added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 29
diff changeset
23 install:
af6d763badfb loadtools: install target added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 29
diff changeset
24 #install -c ${PROGS} ${INSTBIN}
af6d763badfb loadtools: install target added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 29
diff changeset
25 install -c ${SCRIPTS} ${INSTSCR}
af6d763badfb loadtools: install target added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 29
diff changeset
26
8
acaac9162574 loadtools modules coming along
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
27 clean:
9
fea204bc7674 fc-sertool compiles
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 8
diff changeset
28 rm -f *.o *.out *errs ${PROGS}