SCM Repository
[diderot] / trunk / test / MIP / Makefile.in |
View of /trunk/test/MIP/Makefile.in
Parent Directory
|
Revision Log
Revision 3349 -
(download)
(annotate)
Tue Oct 27 15:16:36 2015 UTC (5 years, 4 months ago) by jhr
File size: 804 byte(s)
Tue Oct 27 15:16:36 2015 UTC (5 years, 4 months ago) by jhr
File size: 804 byte(s)
making copyrights consistent for all code in the repository
# Makefile.in # # This code is part of the Diderot Project (http://diderot-language.cs.uchicago.edu) # # COPYRIGHT (c) 2015 The University of Chicago # 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) TARGET = mip SRCS = mip_opencl.c all: $(TARGET) $(TARGET): $(SRCS) $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $(TARGET) $(SRCS) #################### Cleanup #################### include @DIDEROT_MKDIR@/clean-rules.gmk
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |