FreeCalypso > hg > freecalypso-reveng
annotate ticoff/Makefile @ 91:daf69d5edb3f
armdis: ldr/str decoding implemented (but not PC-relative ldr yet)
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
|---|---|
| date | Sun, 30 Mar 2014 00:27:25 +0000 |
| parents | c20dc315a9d4 |
| children | 0f94d17899b3 |
| rev | line source |
|---|---|
| 70 | 1 CC= gcc |
| 2 CFLAGS= -O2 | |
| 3 PROG= tiobjd | |
|
82
c20dc315a9d4
tiobjd: beginning of reloc handling
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
78
diff
changeset
|
4 OBJS= basics.o globals.o lowlevel.o main.o reloc.o symtab.o tables.o |
|
78
c2445afce514
tiobjd: symbol storage classes decoded into mnemonics
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
77
diff
changeset
|
5 HDRS= coffconst.h filestruct.h globals.h intstruct.h |
| 70 | 6 |
| 7 all: ${PROG} | |
| 8 | |
| 9 ${PROG}: ${OBJS} | |
| 10 ${CC} -o $@ ${OBJS} | |
| 11 | |
| 12 ${OBJS}: ${HDRS} | |
| 13 | |
|
76
7a0559016b68
ticoff/Makefile: install added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
74
diff
changeset
|
14 install: |
|
7a0559016b68
ticoff/Makefile: install added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
74
diff
changeset
|
15 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
|
16 |
| 70 | 17 clean: |
| 18 rm -f *.o ${PROG} *err |
