comparison calypso/Makefile @ 4:deeeef558279

fcsim-calypso-be put together
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 14 Mar 2021 05:07:34 +0000
parents
children f6b03af63bf7
comparison
equal deleted inserted replaced
3:45ea06eaa9fd 4:deeeef558279
1 CC= gcc
2 CFLAGS= -O2
3 PROGS= fcsim-calypso-be
4
5 INSTALL_PREFIX= /opt/freecalypso
6
7 INSTBIN=${INSTALL_PREFIX}/bin
8
9 MAIN_OBJS= main.o targetfd.o tpinterf.o
10
11 all: ${PROGS}
12
13 fcsim-calypso-be: ${MAIN_OBJS}
14 ${CC} ${CFLAGS} -o $@ ${MAIN_OBJS}
15
16 install:
17 mkdir -p ${INSTBIN}
18 install -c fcsim-calypso-be ${INSTBIN}
19
20 clean:
21 rm -f ${PROGS} *.o