X-Git-Url: https://hackdaworld.org/gitweb/?p=physik%2Fcomputational_physics.git;a=blobdiff_plain;f=Makefile;fp=Makefile;h=ad5c1cfe404a88326ddddd0ef7515ccf1d8beaf0;hp=b368059389b0f0dc0acda1237ac12a3d76e77cb3;hb=dbec7a4f63c3acda2e68719cb98d85fd34c91afc;hpb=936dfe8d44eb6beeecb48b201db22bb0d9de9956 diff --git a/Makefile b/Makefile index b368059..ad5c1cf 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 kettenbruchentwicklung +API = g_plot.o general.o +OBJS = newton zentral homogen integral-1_2 integral-2_2 polynom_interpolation kettenbruchentwicklung bessel_1 all: $(OBJS) @@ -30,6 +30,9 @@ polynom_interpolation: $(API) kettenbruchentwicklung: $(API) $(CC) $(CFLAGS) -o $@ $(API) $(LIBS) kettenbruchentwicklung.c +bessel_1: $(API) + $(CC) $(CFLAGS) -o $@ $(API) $(LIBS) bessel_1.c + clean: rm $(API) $(OBJS)