Skip to content

Commit 7e0cd9d

Browse files
author
Agus
committed
.
1 parent ad3e295 commit 7e0cd9d

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

libs/autoexec_creator/autoexec_creator.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#include "autoexec_creator.h"
22
#include "..\nstd_string\nstd_string.h"
33
#include "..\cfg_commands\cfg_commands.h"
4+
#include "..\cfg_commands\keyboard_and_mouse.h"
45

56
enum
67
{

libs/cfg_commands/cfg_commands.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#include "cfg_commands.h"
2+
#include "audio.h"
3+
#include "game.h"
4+
#include "keyboard_and_mouse.h"
5+
#include "other_settings.h"
26

37
const cfg_menu_t cfg_menu[] =
48
{

libs/cfg_commands/cfg_commands.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
#ifndef CFG_COMMANDS_H
22
#define CFG_COMMANDS_H
33

4-
#include "audio.h"
5-
#include "game.h"
6-
#include "keyboard_and_mouse.h"
7-
#include "other_settings.h"
8-
94
typedef struct
105
{
116
const char* const * sub_menu_title;

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ autoexec-creator.exe: ${MAIN_OBJ} ${AUTOEXEC_OBJ} ${NSTD_STRING_OBJ} ${AUDIO_OBJ
1818
${MAIN_OBJ}: main.c libs\menu\menu.h
1919
${CC} ${CFLAGS} -c main.c -o ${MAIN_OBJ}
2020

21-
${AUTOEXEC_OBJ}: libs\autoexec_creator\autoexec_creator.c libs\autoexec_creator\autoexec_creator.h libs\nstd_string\nstd_string.h libs\cfg_commands\cfg_commands.h libs\cfg_commands\audio.h libs\cfg_commands\game.h libs\cfg_commands\keyboard_and_mouse.h libs\cfg_commands\other_settings.h
21+
${AUTOEXEC_OBJ}: libs\autoexec_creator\autoexec_creator.c libs\autoexec_creator\autoexec_creator.h libs\nstd_string\nstd_string.h libs\cfg_commands\cfg_commands.h libs\cfg_commands\keyboard_and_mouse.h
2222
${CC} ${CFLAGS} -c libs\autoexec_creator\autoexec_creator.c -o ${AUTOEXEC_OBJ}
2323

2424
${NSTD_STRING_OBJ}: libs\nstd_string\nstd_string.c libs\nstd_string\nstd_string.h

0 commit comments

Comments
 (0)