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
imagerie/makefile.bak Executable file
View File

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