public
Description: My solutions for problems from the UVa Online Judge (Valladolid).
Homepage: http://icpcres.ecs.baylor.edu/onlinejudge/
Clone URL: git://github.com/andmej/acm.git
acm / 10079 - Pizza Cutting / Makefile.win
100755 31 lines (23 sloc) 0.844 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Project: 10079
# Makefile created by Dev-C++ 4.9.9.2
 
CPP = g++.exe
CC = gcc.exe
WINDRES = windres.exe
RES =
OBJ = 10079.o $(RES)
LINKOBJ = 10079.o $(RES)
LIBS = -L"D:/Programs/Dev-Cpp/lib"
INCS = -I"D:/Programs/Dev-Cpp/include"
CXXINCS = -I"D:/Programs/Dev-Cpp/lib/gcc/mingw32/3.4.2/include" -I"D:/Programs/Dev-Cpp/include/c++/3.4.2/backward" -I"D:/Programs/Dev-Cpp/include/c++/3.4.2/mingw32" -I"D:/Programs/Dev-Cpp/include/c++/3.4.2" -I"D:/Programs/Dev-Cpp/include"
BIN = 10079.exe
CXXFLAGS = $(CXXINCS)
CFLAGS = $(INCS)
RM = rm -f
 
.PHONY: all all-before all-after clean clean-custom
 
all: all-before 10079.exe all-after
 
 
clean: clean-custom
${RM} $(OBJ) $(BIN)
 
$(BIN): $(OBJ)
$(CPP) $(LINKOBJ) -o "10079.exe" $(LIBS)
 
10079.o: 10079.cpp
$(CPP) -c 10079.cpp -o 10079.o $(CXXFLAGS)