FreeCalypso > hg > freecalypso-reveng
annotate ticoff/Makefile @ 111:0f94d17899b3
tiobjd: disassembly integrated, no relocs or hints yet
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Thu, 03 Apr 2014 05:14:15 +0000 |
parents | c20dc315a9d4 |
children | fb1e47bebe00 |
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 \ |
0f94d17899b3
tiobjd: disassembly integrated, no relocs or hints yet
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
82
diff
changeset
|
5 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 |