Added some small boring scripts and programs writen in few last years
[mirrors/Programs.git] / c / condrum / Makefile.win
1 # Project: ConDrumer
2 # Makefile created by Dev-C++ 4.9.9.2
3
4 CPP = g++.exe
5 CC = gcc.exe
6 WINDRES = windres.exe
7 RES = condrum_private.res
8 OBJ = condrum.o $(RES)
9 LINKOBJ = condrum.o $(RES)
10 LIBS = -L"D:/Dev-Cpp/lib" bass.lib
11 INCS = -I"D:/Dev-Cpp/include"
12 CXXINCS = -I"D:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include" -I"D:/Dev-Cpp/include/c++/3.4.2/backward" -I"D:/Dev-Cpp/include/c++/3.4.2/mingw32" -I"D:/Dev-Cpp/include/c++/3.4.2" -I"D:/Dev-Cpp/include"
13 BIN = condrum.exe
14 CXXFLAGS = $(CXXINCS) -fexpensive-optimizations -O3
15 CFLAGS = $(INCS) -fexpensive-optimizations -O3
16 RM = rm -f
17
18 .PHONY: all all-before all-after clean clean-custom
19
20 all: all-before condrum.exe all-after
21
22
23 clean: clean-custom
24 ${RM} $(OBJ) $(BIN)
25
26 $(BIN): $(OBJ)
27 $(CC) $(LINKOBJ) -o "condrum.exe" $(LIBS)
28
29 condrum.o: condrum.c
30 $(CC) -c condrum.c -o condrum.o $(CFLAGS)
31
32 condrum_private.res: condrum_private.rc
33 $(WINDRES) -i condrum_private.rc --input-format=rc -o condrum_private.res -O coff
This page took 0.302439 seconds and 4 git commands to generate.