Loop your X cursor around the screen 👉😎👉
git clone https://github.com/m-col/xoop
Files | Refs | Readme | License

Commit 3b5bcb2c39615a05cf5d29be70ce40390af076bb
Parent: d7702a28f9cd2dbf918cb14515b83e9569984552
Author: mcol <mcol@posteo.net>
Date: 2020-04-17 22:24:19 +0100
Committer: mcol <mcol@posteo.net>
Committed: 2020-04-17 22:24:19 +0100

add makefile

makefile Added

@@ -0,0 +1,20 @@
+OUT        = xinf
+SRC 	   = xinf.c
+CFLAGS 	  += -lX11
+PREFIX    ?= /usr/local
+BINPREFIX ?= $(PREFIX)/bin
+
+all: $(OUT)
+
+clean:
+	$(RM) $(OUT) $(OBJ)
+
+install:
+	mkdir -p "$(DESTDIR)$(BINPREFIX)"
+	cp -pf xinf "$(DESTDIR)$(BINPREFIX)"
+
+uninstall:
+	rm -f "$(DESTDIR)$(BINPREFIX)"/xinf
+
+
+.PHONY: all clean install uninstall