FreeCalypso > hg > freecalypso-tools
comparison rvinterf/tmsh/Makefile @ 0:e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Sat, 11 Jun 2016 00:13:35 +0000 |
| parents | |
| children | ea061975c883 |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:e7502631a0f9 |
|---|---|
| 1 CC= gcc | |
| 2 CFLAGS= -O2 -I../include | |
| 3 PROGS= fc-tmsh | |
| 4 INSTBIN=/usr/local/bin | |
| 5 LIBS= ../libasync/libasync.a | |
| 6 | |
| 7 TMSH_OBJS= abb.o etmbasic.o ffs2.o ffs2resp.o ffs2wr.o init.o main.o \ | |
| 8 misc.o omr.o pktsort.o tmcore.o usercmd.o | |
| 9 | |
| 10 all: ${PROGS} | |
| 11 | |
| 12 fc-tmsh: ${TMSH_OBJS} ${LIBS} | |
| 13 ${CC} ${CFLAGS} -o $@ ${TMSH_OBJS} ${LIBS} | |
| 14 | |
| 15 install: ${PROGS} | |
| 16 mkdir -p ${INSTBIN} | |
| 17 install -c ${PROGS} ${INSTBIN} | |
| 18 | |
| 19 clean: | |
| 20 rm -f *.o *.out *errs ${PROGS} |
