X-Git-Url: https://www.hackdaworld.org/gitweb/?p=physik%2Fcomputational_physics.git;a=blobdiff_plain;f=Makefile;h=b368059389b0f0dc0acda1237ac12a3d76e77cb3;hp=a80607578852f0b3ac40a758bec622541093d587;hb=936dfe8d44eb6beeecb48b201db22bb0d9de9956;hpb=f18089061fde90286be5810c1762ae3d170d1608 diff --git a/Makefile b/Makefile index a806075..b368059 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ CFLAGS = -O3 -Wall LIBS = -L/usr/lib -lm API = g_plot.o -OBJS = newton zentral homogen integral-1_2 integral-2_2 polynom_interpolation +OBJS = newton zentral homogen integral-1_2 integral-2_2 polynom_interpolation kettenbruchentwicklung all: $(OBJS) @@ -27,6 +27,9 @@ integral-2_2: $(API) polynom_interpolation: $(API) $(CC) $(CFLAGS) -o $@ $(API) $(LIBS) polynom_interpolation.c +kettenbruchentwicklung: $(API) + $(CC) $(CFLAGS) -o $@ $(API) $(LIBS) kettenbruchentwicklung.c + clean: rm $(API) $(OBJS)