X-Git-Url: https://hackdaworld.org/gitweb/?a=blobdiff_plain;f=Makefile;h=ee6e927a39cda74e54798793ebef44dc14860298;hb=e67bb08cb64bf21a6d4e7e8275007bdc5e769154;hp=ce40484dd9feba49a6b9f10ddacd06b293effa79;hpb=25c22fe95e80365056c6a7fadc548119360ca8ce;p=physik%2Fposic.git diff --git a/Makefile b/Makefile index ce40484..ee6e927 100644 --- a/Makefile +++ b/Makefile @@ -16,11 +16,14 @@ POT_SRC=potentials/tersoff.c POT_SRC+=potentials/albe.c POT_SRC+= potentials/lennard_jones.c potentials/harmonic_oscillator.c -all: sic +all: sic fluctuation_calc postproc sic: $(CC) $(CFLAGS) $(LDFLAGS) $(POT_SRC) $(SOURCE) sic.c -o sic +postproc: + $(CC) $(CFLAGS) $(LDFLAGS) $(POT_SRC) $(SOURCE) postproc.c -o postproc + .PHONY:clean clean: - rm -f sic + rm -f sic postproc