init commit

This commit is contained in:
2024-11-12 17:41:10 +01:00
parent 1e4f1f955b
commit 20bc9108d3
146 changed files with 24465 additions and 0 deletions

31
Makefile Normal file
View File

@@ -0,0 +1,31 @@
CFLAGS= -g -fpermissive
CPP= g++
GCC= gcc
MAKE = make
#INCLUDES= -I ./Include
all : backprops interface autopilot
@mv server/AutoPilot ./
backprops :
@$(MAKE) -C backprop
interface :
@$(MAKE) -C InterfaceCpp
autopilot :
@$(MAKE) -C server
clean : cleanbackprop cleaninterface cleanautopilot
cleanbackprop :
@$(MAKE) -C backprop clean
cleaninterface :
@$(MAKE) -C InterfaceCpp clean
cleanautopilot :
@$(MAKE) -C server clean
mrproper : mrproperbackprop mrproperinterface mrproperautopilot
rm -rf AutoPilot
mrproperbackprop :
@$(MAKE) -C backprop mrproper
mrproperinterface :
@$(MAKE) -C InterfaceCpp mrproper
mrproperautopilot :
@$(MAKE) -C server mrproper