commit 7bb6b7d5486df6c490a050b9a8f9c22f7c04db63 parent 8932b987faf2d100b52725468bacbf537b7e4105 Author: Anders Damsgaard <anders@adamsgaard.dk> Date: Fri, 5 Apr 2019 20:42:24 +0200 Change default target to PNG file Diffstat:
M | Makefile | | | 10 | +--------- |
1 file changed, 1 insertion(+), 9 deletions(-)
diff --git a/Makefile b/Makefile @@ -4,15 +4,7 @@ SRC=$(wildcard *.c) OBJ=$(patsubst %.c,%.o,$(SRC)) HDR=$(wildcard *.h) -default: 1d_fd_simple_shear - -# JULIA=julia --banner=no --color=yes -# .PHONY: run-julia -# run-julia: 1d_fd_simple_shear.jl -# echo "$<" | entr -s '$(JULIA) "$<"' -# -# 1d_fd_simple_shear.png: 1d_fd_simple_shear.jl -# $(JULIA) $< +default: 1d_fd_simple_shear.png 1d_fd_simple_shear: $(OBJ) $(HDR) $(CC) $(LDFLAGS) $(OBJ) -o $@