diff options
author | Samuel Lidén Borell <samuel@kodafritt.se> | 2015-01-04 02:26:24 +0100 |
---|---|---|
committer | Samuel Lidén Borell <samuel@kodafritt.se> | 2015-01-04 02:26:24 +0100 |
commit | e4365529a111f8cbfc5950808c35b5951f66da8e (patch) | |
tree | bcba75f5edc77b613b0266067b6a42b4e295d40c /HitTrace/Makefile.win | |
download | LoopyTrace-main.tar.gz LoopyTrace-main.tar.bz2 LoopyTrace-main.zip |
Diffstat (limited to 'HitTrace/Makefile.win')
-rw-r--r-- | HitTrace/Makefile.win | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/HitTrace/Makefile.win b/HitTrace/Makefile.win new file mode 100644 index 0000000..6260373 --- /dev/null +++ b/HitTrace/Makefile.win @@ -0,0 +1,36 @@ +# Project: HitTrace
+# Makefile created by Dev-C++ 4.9.9.2
+
+CPP = g++.exe
+CC = gcc.exe
+WINDRES = windres.exe
+RES = HitTrace_private.res
+OBJ = main.o x86ops.o $(RES)
+LINKOBJ = main.o x86ops.o $(RES)
+LIBS = -L"C:/Dev-Cpp/lib" -mwindows -lcomctl32
+INCS = -I"C:/Dev-Cpp/include"
+CXXINCS = -I"C:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include" -I"C:/Dev-Cpp/include/c++/3.4.2/backward" -I"C:/Dev-Cpp/include/c++/3.4.2/mingw32" -I"C:/Dev-Cpp/include/c++/3.4.2" -I"C:/Dev-Cpp/include"
+BIN = HitTrace.exe
+CXXFLAGS = $(CXXINCS)
+CFLAGS = $(INCS) -D_WIN32_WINDOWS=0x0490
+RM = rm -f
+
+.PHONY: all all-before all-after clean clean-custom
+
+all: all-before HitTrace.exe all-after
+
+
+clean: clean-custom
+ ${RM} $(OBJ) $(BIN)
+
+$(BIN): $(OBJ)
+ $(CC) $(LINKOBJ) -o "HitTrace.exe" $(LIBS)
+
+main.o: main.c
+ $(CC) -c main.c -o main.o $(CFLAGS)
+
+x86ops.o: x86ops.c
+ $(CC) -c x86ops.c -o x86ops.o $(CFLAGS)
+
+HitTrace_private.res: HitTrace_private.rc main.rc
+ $(WINDRES) -i HitTrace_private.rc --input-format=rc -o HitTrace_private.res -O coff
|