TARGET = play_ip Dir2store = ${TARGET_DIR}/usr/bin CFLAGS = ${TARGET}:*.o ${CC} -o $@ ${CFLAGS} $< %.o:%.c ${CC} -c $< .PHONY:clean install uninstall clean: rm -f *.o ${TARGET} install: # cp -f ${TARGET} ${Dir2store} uninstall: rm -f ${Dir2store}/${TARGET}