FreeCalypso > hg > fc-sim-sniff
comparison sw/sniff-dec/Makefile @ 42:5804ff735f9e
sw/sniff-dec/Makefile: no LIBS
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 31 Aug 2023 08:47:32 +0000 |
parents | 118a12e9483b |
children | 7c9bf72d460f |
comparison
equal
deleted
inserted
replaced
41:118a12e9483b | 42:5804ff735f9e |
---|---|
7 | 7 |
8 INSTBIN=${INSTALL_PREFIX}/bin | 8 INSTBIN=${INSTALL_PREFIX}/bin |
9 | 9 |
10 all: ${PROG} | 10 all: ${PROG} |
11 | 11 |
12 ${PROG}: ${OBJS} ${LIBS} | 12 ${PROG}: ${OBJS} |
13 ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} | 13 ${CC} ${CFLAGS} -o $@ ${OBJS} |
14 | 14 |
15 install: | 15 install: |
16 mkdir -p ${INSTBIN} | 16 mkdir -p ${INSTBIN} |
17 install -c ${PROG} ${INSTBIN} | 17 install -c ${PROG} ${INSTBIN} |
18 | 18 |