docs
[mirrors/Programs.git] / c / crypt / Makefile.win
1 # Project: crypt
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 = crypt_private.res
8 OBJ = crypt.o $(RES)
9 LINKOBJ = crypt.o $(RES)
10 LIBS = -L"C:/Dev-Cpp/lib"
11 INCS = -I"C:/Dev-Cpp/include"
12 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"
13 BIN = crypt.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 crypt.exe all-after
21
22
23 clean: clean-custom
24 ${RM} $(OBJ) $(BIN)
25
26 $(BIN): $(OBJ)
27 $(CC) $(LINKOBJ) -o "crypt.exe" $(LIBS)
28
29 crypt.o: crypt.c
30 $(CC) -c crypt.c -o crypt.o $(CFLAGS)
31
32 crypt_private.res: crypt_private.rc
33 $(WINDRES) -i crypt_private.rc --input-format=rc -o crypt_private.res -O coff
This page took 0.451455 seconds and 4 git commands to generate.