FreeCalypso > hg > freecalypso-reveng
annotate ticoff/Makefile @ 119:fb1e47bebe00
tiobjd: sorted profile output
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Fri, 04 Apr 2014 05:11:32 +0000 |
parents | 0f94d17899b3 |
children | 2c6b1319383b |
rev | line source |
---|---|
70 | 1 CC= gcc |
2 CFLAGS= -O2 | |
3 PROG= tiobjd | |
111
0f94d17899b3
tiobjd: disassembly integrated, no relocs or hints yet
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
82
diff
changeset
|
4 OBJS= armdis.o atcommon.o basics.o disasm.o globals.o lowlevel.o main.o \ |
119
fb1e47bebe00
tiobjd: sorted profile output
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
111
diff
changeset
|
5 profile.o reloc.o symtab.o tables.o thumbdis.o |
78
c2445afce514
tiobjd: symbol storage classes decoded into mnemonics
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
77
diff
changeset
|
6 HDRS= coffconst.h filestruct.h globals.h intstruct.h |
70 | 7 |
8 all: ${PROG} | |
9 | |
10 ${PROG}: ${OBJS} | |
11 ${CC} -o $@ ${OBJS} | |
12 | |
13 ${OBJS}: ${HDRS} | |
14 | |
76
7a0559016b68
ticoff/Makefile: install added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
74
diff
changeset
|
15 install: |
7a0559016b68
ticoff/Makefile: install added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
74
diff
changeset
|
16 install -c -o bin -g bin -m 755 ${PROG} /usr/local/bin |
7a0559016b68
ticoff/Makefile: install added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
74
diff
changeset
|
17 |
70 | 18 clean: |
19 rm -f *.o ${PROG} *err |