Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 1:
- 2:
- 3:
- 4:
- 5:
- 6:
- 7:
- 8:
- 9:
- 10:
- 11:
- 12:
- 13:
- 14:
- 15:
- 16:
- 17:
- 18:
- 19:
- 20:
- 21:
- 22:
- 23:
- 24:
- 25:
- 26:
- 27: #
- 28:
- 29:
- 30:
- 31:
- 32:
- SRC = toCent.c
- OBJS = toCent.o
- EXEC = toCent
- LIB = -ltemp_conv
- RELLIB = -L../../../lib
- RELBIN = ../../../bin
- INCLUDE = -I../../../include
- it: ${OBJS}
- ${CC} -o ${EXEC} ${OBJS} ${INCLUDE} ${RELLIB} ${LIB}
- install: it
- rm -f ${RELBIN}/${EXEC}
- install -c ${RELBIN} -m 755 ${EXEC}
- clean:
- rm -f *.o core
- bare: clean
- rm -f ${EXEC} ${RELBIN}/${EXEC}
- depend:
- ${CC} -xM ${SRC} ${INCLUDE} > dependlist
- sed -e '1,/^# DO NOT DELETE/!d' Makefile > /tmp/mm.tmp
- cat dependlist >> /tmp/mm.tmp
- mv /tmp/mm.tmp Makefile
- rm -f dependlist
- .SUFFIXS : .c
- .c.o :
- ${CC} -c $< ${INCLUDE}
- rm -f ${EXEC} ${RELBIN}/${EXEC}
- DO NOT DELETE THIS LINE - make depend uses it
- conv_to_cent.o: conv_to_cent.c
- conv_to_cent.o: /usr/include/stdio.h
- conv_to_cent.o: /usr/include/sys/feature_tests.h
- conv_to_cent.o: /usr/include/sys/va_list.h
- conv_to_cent.o: ../../../include/temp_conv.h
Advertisement
Add Comment
Please, Sign In to add comment