summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--bin/.gitignore8
-rw-r--r--bin/Makefile7
2 files changed, 9 insertions, 6 deletions
diff --git a/bin/.gitignore b/bin/.gitignore
index 4b8dd9b2..a9bc170e 100644
--- a/bin/.gitignore
+++ b/bin/.gitignore
@@ -2,12 +2,12 @@ atch
 bri
 dtch
 hnel
-jrp
-klon
 pbcopy
 pbd
 pbpaste
-typo
 wake
-watch
 xx
+jrp
+klon
+typo
+watch
diff --git a/bin/Makefile b/bin/Makefile
index a304c4cd..7c4f2c8d 100644
--- a/bin/Makefile
+++ b/bin/Makefile
@@ -1,9 +1,12 @@
-BINS = atch bri dtch hnel jrp klon pbcopy pbd pbpaste typo wake watch xx
+PINS = atch bri dtch hnel pbcopy pbd pbpaste wake xx
+BINS = $(PINS) jrp klon typo watch
 CFLAGS += -Wall -Wextra -Wpedantic
 LDLIBS = -lcurses -ledit -lutil
 
 all: $(BINS) .gitignore
 
+portable: $(PINS) .gitignore
+
 atch: dtch
 	ln -f dtch atch
 
@@ -13,7 +16,7 @@ pbcopy pbpaste: pbd
 clean:
 	rm -f $(BINS)
 
-link: $(BINS)
+link:
 	ln -s -f $(BINS:%=$(PWD)/%) ~/.bin
 
 unlink:
/td> 2017-09-27Add merge.c to READMEJune McEnroe 2017-09-03Assert client coords are valid after movementJune McEnroe 2017-09-03Relicense AGPLJune McEnroe 2017-09-01Revert "Add client readOnly mode"June McEnroe 2017-09-01Remove clientRemove call from clientCastJune McEnroe 2017-09-01Add client readOnly modeJune McEnroe 2017-08-31Clean up merge toolJune McEnroe 2017-08-31Choose B for tiles with equal modify timesJune McEnroe 2017-08-31Add quick data file merge toolJune McEnroe 2017-08-30Use only foreground color for selecting spawnJune McEnroe 2017-08-29Add four additional spawnsJune McEnroe 2017-08-28Add respawningJune McEnroe 2017-08-26Move license above includesJune McEnroe 2017-08-26Snapshot metadataJune McEnroe 2017-08-26Add meta.c to READMEJune McEnroe 2017-08-26Use MakefileJune McEnroe