FreeCalypso > hg > freecalypso-reveng
annotate leo-obj/tool/Makefile @ 167:c25367bb7656
objgrep: written, compiles
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
|---|---|
| date | Fri, 04 Jul 2014 00:54:33 +0000 |
| parents | fd772de226cb |
| children | 069b79b36228 |
| rev | line source |
|---|---|
| 70 | 1 CC= gcc |
| 2 CFLAGS= -O2 | |
| 3 PROG= tiobjd | |
|
143
fbdb7686a9e9
tiobjd: raw dump of line number records implemented
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
130
diff
changeset
|
4 OBJS= armdis.o atcommon.o basics.o disasm.o globals.o hints.o ln.o lowlevel.o\ |
|
144
fd772de226cb
tiobjd: started implementing rich symbolic info parsing
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
143
diff
changeset
|
5 main.o profile.o reloc.o richsym.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 |
