FreeCalypso > hg > freecalypso-tools
comparison ringtools/imy/Makefile @ 882:fd4c9bc7835d
fc-imy2pwt program written, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 03 Apr 2022 03:30:27 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
881:bb8ad7c0cee8 | 882:fd4c9bc7835d |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROG= fc-imy2pwt | |
4 OBJS= convert.o durations.o firstpass.o main.o | |
5 HDRS= sizelimits.h | |
6 | |
7 INSTALL_PREFIX= /opt/freecalypso | |
8 | |
9 INSTBIN=${INSTALL_PREFIX}/bin | |
10 | |
11 all: ${PROG} | |
12 | |
13 ${PROG}: ${OBJS} | |
14 ${CC} -o $@ ${OBJS} | |
15 | |
16 ${OBJS}: ${HDRS} | |
17 | |
18 install: ${PROG} | |
19 mkdir -p ${INSTBIN} | |
20 install -c ${PROG} ${INSTBIN} | |
21 | |
22 clean: | |
23 rm -f ${PROG} *.o *.out *errs |