From 0d5a2aa0f6378cfd3f7004779dbde59ee5701644 Mon Sep 17 00:00:00 2001 From: Koichi Nakamura Date: Tue, 5 Jan 2021 12:06:53 +0900 Subject: [PATCH] dont need copy --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7f9a15b..a847dcd 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ c: others/planck.c gcc -Wall -O2 $< -o planck python: others/planck.py - cp others/planck.py planck + ln -s others/planck.py planck chmod +x planck .PHONY: clean