From c5e3515e3f7358b770719ab245fd00c574e0c83e Mon Sep 17 00:00:00 2001 From: snachi2s <91877888+snachi2s@users.noreply.github.com> Date: Sat, 14 May 2022 23:50:57 +0200 Subject: [PATCH] added makefile to run the basic_example program #6 --- gnu-gsl/examples/makefile | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 gnu-gsl/examples/makefile diff --git a/gnu-gsl/examples/makefile b/gnu-gsl/examples/makefile new file mode 100644 index 0000000..4c1f613 --- /dev/null +++ b/gnu-gsl/examples/makefile @@ -0,0 +1,4 @@ +all: + gcc -Wall -c -I /home/selva/gsl/gsl-install/include/ basic_examples.c + gcc -L/home/selva/gsl/gsl-install/lib/ basic_examples.o -lgsl -lgslcblas -lm + ./a.out \ No newline at end of file