aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 761f3d1..ac399b0 100644
--- a/Makefile
+++ b/Makefile
@@ -12,9 +12,9 @@ alarm: alarm.o
$(CC) -o $@ alarm.o $(LDFLAGS)
check: alarm
- alarm 1 sleep 2 & a=$$! ;\
- alarm 1s sleep 2 & b=$$! ;\
- alarm 0h2s sleep 1 & c=$$! ;\
+ ./alarm 1 sleep 2 & a=$$! ;\
+ ./alarm 1s sleep 2 & b=$$! ;\
+ ./alarm 0h2s sleep 1 & c=$$! ;\
{ ! wait $$a; } && { ! wait $$b; } && { wait $$c; }
install: alarm