X-Git-Url: https://hackdaworld.org/gitweb/?p=physik%2Fcomputational_physics.git;a=blobdiff_plain;f=Makefile;fp=Makefile;h=8ee2fa638692802d3c1c8defdf34e2495f197965;hp=4efb3bda26f6f98bd798ba16bcc6eab3c599dfeb;hb=53bf1c9b8fa24799a5bb284c6e93e877dac813d0;hpb=5df96c501847a0db33e17ab397aa180b538c7ad9 diff --git a/Makefile b/Makefile index 4efb3bd..8ee2fa6 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ CFLAGS = -O3 -Wall LIBS = -L/usr/lib -lm API = g_plot.o -OBJS = newton zentral +OBJS = newton zentral homogen all: $(OBJS) @@ -15,6 +15,9 @@ newton: $(API) zentral: $(API) $(CC) $(CFLAGS) -o $@ $(API) $(LIBS) zentral.c +homogen: $(API) + $(CC) $(CFLAGS) -o $@ $(API) $(LIBS) homogen.c + clean: rm $(API) $(OBJS)