APPNAME=xinput2_ivy SRC=${APPNAME}.c all: ${APPNAME} ${APPNAME}: ${SRC} gcc -Wall $< -lX11 -lXi -livy -o $@ clean: rm -f *~ rm -f ${APPNAME} distclean: clean install: all install -d ${DESTDIR}${PREFIX}/bin install -m 0755 ${APPNAME} ${DESTDIR}${PREFIX}/bin