X-Git-Url: https://www.hackdaworld.org/gitweb/?p=physik%2Fcomputational_physics.git;a=blobdiff_plain;f=Makefile;h=0af42366cdb042edf95631ff7ee6d5d6440de76c;hp=a80607578852f0b3ac40a758bec622541093d587;hb=a649f7232da963470fd43e9a1a5384944ba5ed62;hpb=8fc948825d4563572a1172aba6c0b998bc1d907c diff --git a/Makefile b/Makefile index a806075..0af4236 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,8 @@ INCLUDEDIR = /usr/include CFLAGS = -O3 -Wall LIBS = -L/usr/lib -lm -API = g_plot.o -OBJS = newton zentral homogen integral-1_2 integral-2_2 polynom_interpolation +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 all: $(OBJS) @@ -27,6 +27,21 @@ integral-2_2: $(API) polynom_interpolation: $(API) $(CC) $(CFLAGS) -o $@ $(API) $(LIBS) polynom_interpolation.c +kettenbruchentwicklung: $(API) + $(CC) $(CFLAGS) -o $@ $(API) $(LIBS) kettenbruchentwicklung.c + +bessel_1: $(API) + $(CC) $(CFLAGS) -o $@ $(API) $(LIBS) bessel_1.c + +bessel_2: $(API) + $(CC) $(CFLAGS) -o $@ $(API) $(LIBS) bessel_2.c + +check_rand: $(API) + $(CC) $(CFLAGS) -o $@ $(API) $(LIBS) check_rand.c + +mc_int: $(API) + $(CC) $(CFLAGS) -o $@ $(API) $(LIBS) mc_int.c + clean: rm $(API) $(OBJS)