PROG=	test-post
SRCS=	test-post.c
#---------------
OBJS	+= ${SRCS:.c=.o}
#---------------
all:	${PROG}
#---------------
${PROG}: ${OBJS}
	${LD} $(LDFLAGS) -o ${PROG} ${LIBS} ${OBJS} ${LDADD}
#---------------
clean:
	rm -f *.o ${PROG} ${PROG}.elf ${PROG}.gdb
#---------------
install: ${PROG}
	${CP} ${PROG} $(DESTBIN)
#---------------
# End of Makefile
