diff --git a/compile.sh b/compile.sh index 2033c68..9ed23ec 100755 --- a/compile.sh +++ b/compile.sh @@ -1 +1 @@ -gcc -g3 -O0 -o afterburner afterburner.c +gcc -g3 -O0 -o afterburner src_pc/afterburner.c diff --git a/compile_win32.sh b/compile_win32.sh index d078b44..e23837f 100755 --- a/compile_win32.sh +++ b/compile_win32.sh @@ -1,4 +1,4 @@ # path to your win32 cross-compiler CC=~/opt/mingw32/bin/i686-w64-mingw32-gcc -$CC -g3 -O0 -o afterburner_w32.exe afterburner.c -D_USE_WIN_API_ +$CC -g3 -O0 -o afterburner_w32.exe src_pc/afterburner.c -D_USE_WIN_API_ diff --git a/compile_win64.sh b/compile_win64.sh index e562220..5fd26f1 100755 --- a/compile_win64.sh +++ b/compile_win64.sh @@ -1,4 +1,4 @@ # path to your Win64 cross-compiler CC=~/opt/mingw64/bin/x86_64-w64-mingw32-gcc -$CC -g3 -O0 -o afterburner_w64.exe afterburner.c -D_USE_WIN_API_ +$CC -g3 -O0 -o afterburner_w64.exe src_pc/afterburner.c -D_USE_WIN_API_ diff --git a/afterburner.c b/src_pc/afterburner.c similarity index 100% rename from afterburner.c rename to src_pc/afterburner.c diff --git a/serial_port.h b/src_pc/serial_port.h similarity index 100% rename from serial_port.h rename to src_pc/serial_port.h