Skip to content

Commit 1ce8dac

Browse files
committed
fix Makefile
1 parent 807561f commit 1ce8dac

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ kc: kc.c kc.h Makefile
1010

1111
install: all
1212
install -Dm755 kc $(DESTDIR)$(BINDIR)/kc
13-
mkdir -p $(DESTDIR)/etc/kc
14-
cp -r palettes $(DESTDIR)/etc/kc
13+
mkdir -p $(DESTDIR)/usr/share/kc
14+
cp -r palettes $(DESTDIR)/usr/share/kc
1515

1616
uninstall:
1717
rm -f $(DESTDIR)$(BINDIR)/kc
18-
rm -rf $(DESTDIR)/etc/kc
18+
rm -rf $(DESTDIR)/usr/share/kc
1919

2020
clean:
2121
rm -f kc *.o

README

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@ Linux have been tested at this time:
1414

1515
- simple terminal, st [2]
1616

17-
As there are no other dependєncies, other than a C compiler (gcc), this program
18-
should work on distributions other than KISS Linux as well.
17+
Other than a terminal emulator and C compiler (e.g. gcc), KISS Colors has no other dependencies.
1918

20-
I apologize for the "ugliness" of the code at this time. I hope to address this
21-
in future iterations.
19+
Note: I apologize for the "ugliness" of the code at this time. I hope to address this
20+
in future commits.
2221

2322

2423
INSTALLATION

kc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ select_palette(void)
3737

3838
if (p.fp == NULL)
3939
{
40-
fprintf(stderr, "Selected palette does not exist. Do nothing\n");
40+
fprintf(stderr, "Selected palette does not exist.\n");
4141
return 1;
4242
}
4343

@@ -203,7 +203,7 @@ main(int argc, char **argv)
203203
p.MODE = "light";
204204
break;
205205
case 'v':
206-
printf("0.0.5\n");
206+
printf("0.0.6\n");
207207
break;
208208
case 'h':
209209
p.errf++;

0 commit comments

Comments
 (0)