1
0

Initial commit

This commit is contained in:
Tibeuleu
2022-01-19 14:26:18 +01:00
parent 2378dec60c
commit 43889993a9
2044 changed files with 6553027 additions and 0 deletions

22
polarisation/makefile Executable file
View File

@@ -0,0 +1,22 @@
CC=g++
CFLAGS=-c -Wall --pedantic
LDFLAGS=-Wall --pedantic
SOURCES=functions.cpp synchrotron.cpp emission_pola.cpp
OBJECTS=functions.o synchrotron.o emission_pola.o
EXECUTABLE=projet
all: $(EXECUTABLE)
$(EXECUTABLE): $(OBJECTS)
$(CC) $(LDFLAGS) $^ -o $@ ; ./$(EXECUTABLE) ; make clean ;
clean:
$(RM) *.o $(EXECUTABLE)
depend:
makedepend -Y $(SOURCES)
# DO NOT DELETE
functions.o: functions.h boost/math/special_functions/bessel.hpp
synchrotron.o: functions.h
emission_pola.o: functions.h synchrotron.h