diff options
| author | Louis Burda <quent.burda@gmail.com> | 2024-08-11 17:57:31 +0200 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2024-08-11 17:57:31 +0200 |
| commit | 8d9e0a9e53a467e9a4685c27213a20d39cb2ab81 (patch) | |
| tree | 3232a9bddb15f7207f15c2f1a6f865938347ddc5 | |
| parent | fd79b0799d3a6eefe2b82c9d3af8c1cec074cf9e (diff) | |
| download | xsnip-8d9e0a9e53a467e9a4685c27213a20d39cb2ab81.tar.gz xsnip-8d9e0a9e53a467e9a4685c27213a20d39cb2ab81.zip | |
Rename to xsnip
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | Makefile | 10 | ||||
| -rw-r--r-- | xsnip.c (renamed from dsnip.c) | 2 |
3 files changed, 7 insertions, 7 deletions
@@ -1,3 +1,3 @@ .cache -dsnip +xsnip compile_commands.json @@ -3,15 +3,15 @@ BINDIR ?= /bin LDLIBS = -lX11 -lImlib2 -all: dsnip +all: xsnip clean: - rm -f dsnip + rm -f xsnip -install: dsnip - install -m 755 dsnip -t "$(DESTDIR)$(PREFIX)$(BINDIR)" +install: xsnip + install -m 755 xsnip -t "$(DESTDIR)$(PREFIX)$(BINDIR)" uninstall: - rm -f "$(DESTDIR)$(PREFIX)$(BINDIR)/dsnip" + rm -f "$(DESTDIR)$(PREFIX)$(BINDIR)/xsnip" .PHONY: all clean install uninstall @@ -14,7 +14,7 @@ #define MIN(a, b) ((a) < (b) ? (a) : (b)) #define MAX(a, b) ((a) >= (b) ? (a) : (b)) -static const char usage[] = "dsnip [-h] [-d DELAY] OUTFILE"; +static const char usage[] = "xsnip [-h] [-d DELAY] OUTFILE"; static const char *filename; |
