added bessel_1.c + modified Makefile
[physik/computational_physics.git] / Makefile
index b368059..ad5c1cf 100644 (file)
--- 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)