From 92b04d40b5dfe09103936f205cc08e14072bdc6b Mon Sep 17 00:00:00 2001 From: Alinson Xavier Date: Sat, 4 Apr 2015 06:59:16 -0400 Subject: [PATCH] Change executable name --- Makefile.example | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.example b/Makefile.example index a348e20..b141e79 100644 --- a/Makefile.example +++ b/Makefile.example @@ -1,13 +1,13 @@ path := src/*/*.c src/*.c src/*.s include:= src/*.h -binary := bin/hw2.exe +binary := bin/gtsp.run source := $(wildcard ${path}) headers:= $(wildcard ${include}) obj := $(patsubst src/%, bin/%, $(patsubst %.c,%.o, $(patsubst %.s,%.s.o, $(source)))) -CPLEX_INCLUDE = /.../.../.../IBM/ILOG/CPLEX_Studio1261/cplex/include/ilcplex -CPLEX_LIB_PATH = /.../.../.../IBM/ILOG/CPLEX_Studio1261/cplex/bin/x64_win64 +CPLEX_INCLUDE = .../IBM/ILOG/CPLEX_Studio1261/cplex/include/ilcplex +CPLEX_LIB_PATH = .../IBM/ILOG/CPLEX_Studio1261/cplex/bin/x64_win64 CPLEX_LIB = cplex1261 flags := -O3 -g -Wall -pedantic -g --std=c11 -Winline -I$(CPLEX_INCLUDE)