FreeCalypso > hg > freecalypso-reveng
annotate leo-obj/tool/Makefile @ 132:af0f8bfa3b3a
leo-obj/Makefile: created
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Mon, 07 Apr 2014 00:59:34 +0000 |
parents | 87b82398a08b |
children | fbdb7686a9e9 |
rev | line source |
---|---|
70 | 1 CC= gcc |
2 CFLAGS= -O2 | |
3 PROG= tiobjd | |
126
2c6b1319383b
tiobjd: first preparations for adding disasm hints mechanism
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
119
diff
changeset
|
4 OBJS= armdis.o atcommon.o basics.o disasm.o globals.o hints.o lowlevel.o \ |
2c6b1319383b
tiobjd: first preparations for adding disasm hints mechanism
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
119
diff
changeset
|
5 main.o 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 |