SCM Repository
View of /branches/pure-cfg/test/MIP/Makefile.in
Parent Directory
|
Revision Log
Revision 671 -
(download)
(annotate)
Wed Mar 23 15:47:23 2011 UTC (11 years, 3 months ago) by jhr
File size: 635 byte(s)
Wed Mar 23 15:47:23 2011 UTC (11 years, 3 months ago) by jhr
File size: 635 byte(s)
Added -m64 flag to C compiles and fixed some warnings.
# Makefile.in # # COPYRIGHT (c) 2010 The Diderot Project # All rights reserved. # # @configure_input@ # OS = $(shell uname -s) SHELL = @SHELL@ CC = @CC@ CFLAGS = @CFLAGS@ DEFINES = -DDIDEROT -DTEEM_32BIT=1 INCLUDES = -I@TEEM_DIR@/include LDPATHS = -L@TEEM_DIR@/lib @LDPATHS@ ifeq ($(OS),Darwin) LIBS = -framework OpenCL -lteem -lpng -lz else LIBS = -lteem -lpng -lz -lpthread -lm endif CPPFLAGS = $(INCLUDES) $(DEFINES) CFLAGS = -g -O3 -W -Wall LDFLAGS = $(LDPATHS) $(LIBS) PROG = mip SRCS = mip_opencl.c all: $(PROG) $(PROG): $(SRCS) $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRCS) clean: rm -f $(PROG)
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |