X-Git-Url: https://www.hackdaworld.org/gitweb/?p=physik%2Fcomputational_physics.git;a=blobdiff_plain;f=Makefile;h=4efb3bda26f6f98bd798ba16bcc6eab3c599dfeb;hp=c65ab8669d599942a4a27eec492bec31ca6d8288;hb=5df96c501847a0db33e17ab397aa180b538c7ad9;hpb=cede22b7d2a4006a212670776d0395c750f711de diff --git a/Makefile b/Makefile index c65ab86..4efb3bd 100644 --- a/Makefile +++ b/Makefile @@ -5,13 +5,16 @@ CFLAGS = -O3 -Wall LIBS = -L/usr/lib -lm API = g_plot.o -OBJS = newton +OBJS = newton zentral all: $(OBJS) newton: $(API) $(CC) $(CFLAGS) -o $@ $(API) $(LIBS) newton.c +zentral: $(API) + $(CC) $(CFLAGS) -o $@ $(API) $(LIBS) zentral.c + clean: rm $(API) $(OBJS)