auto-sync
This commit is contained in:
parent
d1e71965f5
commit
2dba2ae9c2
|
@ -0,0 +1,17 @@
|
||||||
|
/*
|
||||||
|
* @file chevrolet_camaro_4.cpp
|
||||||
|
*
|
||||||
|
* @date Oct 16, 2015
|
||||||
|
* @author Andrey Belomutskiy, (c) 2012-2015
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "chevrolet_camaro_4.h"
|
||||||
|
|
||||||
|
EXTERN_ENGINE
|
||||||
|
;
|
||||||
|
|
||||||
|
void setCamaro4(DECLARE_ENGINE_PARAMETER_F) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
/*
|
||||||
|
* @file chevrolet_camaro_4.h
|
||||||
|
*
|
||||||
|
* @date Oct 16, 2015
|
||||||
|
* @author Andrey Belomutskiy, (c) 2012-2015
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef CONFIG_ENGINES_CHEVROLET_CAMARO_4_H_
|
||||||
|
#define CONFIG_ENGINES_CHEVROLET_CAMARO_4_H_
|
||||||
|
|
||||||
|
#include "engine.h"
|
||||||
|
|
||||||
|
void setCamaro4(DECLARE_ENGINE_PARAMETER_F);
|
||||||
|
|
||||||
|
#endif /* CONFIG_ENGINES_CHEVROLET_CAMARO_4_H_ */
|
|
@ -29,5 +29,6 @@ ENGINES_SRC_CPP = $(PROJECT_DIR)/config/engines/ford_aspire.cpp \
|
||||||
$(PROJECT_DIR)/config/engines/dodge_ram.cpp \
|
$(PROJECT_DIR)/config/engines/dodge_ram.cpp \
|
||||||
$(PROJECT_DIR)/config/engines/vw.cpp \
|
$(PROJECT_DIR)/config/engines/vw.cpp \
|
||||||
$(PROJECT_DIR)/config/engines/dodge_stratus.cpp \
|
$(PROJECT_DIR)/config/engines/dodge_stratus.cpp \
|
||||||
|
$(PROJECT_DIR)/config/engines/chevrolet_camaro_4.cpp \
|
||||||
$(PROJECT_DIR)/config/engines/daihatsu.cpp
|
$(PROJECT_DIR)/config/engines/daihatsu.cpp
|
||||||
|
|
Loading…
Reference in New Issue