X-Git-Url: https://hackdaworld.org/gitweb/?p=physik%2Fcomputational_physics.git;a=blobdiff_plain;f=Makefile;fp=Makefile;h=e08fef7382438945c5443f885777cc19f9b18500;hp=0af42366cdb042edf95631ff7ee6d5d6440de76c;hb=33422521a19e7afa578c599705bbfb0c8d31b88a;hpb=a649f7232da963470fd43e9a1a5384944ba5ed62 diff --git a/Makefile b/Makefile index 0af4236..e08fef7 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,12 @@ # computational physics Makefile, rules for all example programs +CC=gcc INCLUDEDIR = /usr/include CFLAGS = -O3 -Wall LIBS = -L/usr/lib -lm API = g_plot.o general.o -OBJS = newton zentral homogen integral-1_2 integral-2_2 polynom_interpolation kettenbruchentwicklung bessel_1 bessel_2 check_rand mc_int +OBJS = newton zentral homogen integral-1_2 integral-2_2 polynom_interpolation kettenbruchentwicklung bessel_1 bessel_2 check_rand mc_int nullstellen rk all: $(OBJS) @@ -42,7 +43,13 @@ check_rand: $(API) mc_int: $(API) $(CC) $(CFLAGS) -o $@ $(API) $(LIBS) mc_int.c +nullstellen: $(API) + $(CC) $(CFLAGS) -o $@ $(API) $(LIBS) nullstellen.c + +rk: $(API) + $(CC) $(CFLAGS) -o $@ $(API) $(LIBS) rk.c + clean: - rm $(API) $(OBJS) + rm -f $(API) $(OBJS) remake: clean all