From 0ca12b31712489534e2d4e4f6c3f69f600fe8229 Mon Sep 17 00:00:00 2001 From: Nicholas Nadeau Date: Mon, 26 Sep 2022 10:48:38 -0400 Subject: [PATCH] build(makefile): added proper .PHONY target --- sample/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/sample/Makefile b/sample/Makefile index c6ca7568..d51b1545 100644 --- a/sample/Makefile +++ b/sample/Makefile @@ -4,6 +4,7 @@ COMMON=-O2 -I../include -L../lib -std=c++17 -pthread -Wl,-no-as-needed -Wl,-rpath,'$$ORIGIN'/../lib +.PHONY: all all: $(CXX) $(COMMON) testxml.cc -lmujoco -o ../bin/testxml $(CXX) $(COMMON) testspeed.cc -lmujoco -o ../bin/testspeed