Browse Source

~/.bin/Makefile: Use whatever compiler is around

Luna Stadler 4 years ago
parent
commit
9676637505
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .bin/Makefile

+ 1 - 1
.bin/Makefile

@ -10,7 +10,7 @@ timely: timely.go
10 10
	go build timely.go
11 11
12 12
up: up.c
13
	clang -Wall -o up up.c
13
	$(CC) -Wall -o up up.c
14 14
15 15
working-time: working-time.go
16 16
	go build working-time.go