SCM Repository
[diderot] / trunk / test / MIP / Makefile.in |
Diff of /trunk/test/MIP/Makefile.in
Parent Directory
|
Revision Log
|
Patch
revision 1310, Sat Jun 11 14:28:32 2011 UTC | revision 1311, Sat Jun 11 14:37:43 2011 UTC | |
---|---|---|
# | Line 1 | Line 1 |
1 | # Makefile.in | # Makefile.in |
2 | # | # |
3 | # COPYRIGHT (c) 2010 The Diderot Project | # COPYRIGHT (c) 2011 The Diderot Project (http://diderot-language.cs.uchicago.edu) |
4 | # All rights reserved. | # All rights reserved. |
5 | # | # |
6 | # @configure_input@ | # @configure_input@ |
# | Line 25 | Line 25 |
25 | CFLAGS = -g -O3 -W -Wall | CFLAGS = -g -O3 -W -Wall |
26 | LDFLAGS = $(LDPATHS) $(LIBS) | LDFLAGS = $(LDPATHS) $(LIBS) |
27 | ||
28 | PROG = mip | TARGET = mip |
29 | SRCS = mip_opencl.c | SRCS = mip_opencl.c |
30 | ||
31 | all: $(PROG) | all: $(TARGET) |
32 | ||
33 | $(PROG): $(SRCS) | $(TARGET): $(SRCS) |
34 | $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRCS) | $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $(TARGET) $(SRCS) |
35 | ||
36 | clean: | #################### Cleanup #################### |
37 | rm -f $(PROG) | |
38 | include @DIDEROT_MKDIR@/clean-rules.gmk |
|
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |