summaryrefslogtreecommitdiff
path: root/csgo_radar/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'csgo_radar/Makefile')
-rw-r--r--csgo_radar/Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/csgo_radar/Makefile b/csgo_radar/Makefile
new file mode 100644
index 0000000..f569cca
--- /dev/null
+++ b/csgo_radar/Makefile
@@ -0,0 +1,22 @@
+CC = i686-w64-mingw32-gcc
+CXX = i686-w64-mingw32-g++
+CFLAGS := -Iinclude -Os -s -Wall -fvisibility=hidden -ffunction-sections -fdata-sections -ffast-math -fomit-frame-pointer -fexpensive-optimizations -Wl,--gc-sections -m32 -static -static-libgcc -static-libstdc++
+LDFLAGS :=
+
+
+all: csgo_radar
+
+%.o: %.c
+ @echo 'Building file: $<'
+ @echo 'Invoking: GCC C Compiler'
+ $(CC) $(CFLAGS) -D_GNU_SOURCE=1 -DPSAPI_VERSION=1 -DUNICODE=1 -std=gnu99 $(CFLAGS) -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o $@ $<
+ @echo 'Finished building: $<'
+ @echo ' '
+
+
+csgo_radar: main.o
+ @echo 'Building target: $@'
+ @echo 'Invoking: GCC C Linker'
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ -lpsapi
+ @echo 'Finished building target: $@'
+ @echo ' '