SCM Repository
Annotation of /examples/iso2d-demo/Makefile.in
Parent Directory
|
Revision Log
Revision 1880 - (view) (download)
1 : | jhr | 1880 | # Makefile for iso2d animation demo |
2 : | # | ||
3 : | # COPYRIGHT (c) 2012 The Diderot Project | ||
4 : | # All rights reserved. | ||
5 : | # | ||
6 : | |||
7 : | SHELL = /bin/sh | ||
8 : | |||
9 : | CC = clang | ||
10 : | CFLAGS = -m64 -O3 | ||
11 : | LDFLAGS = -L/usr/local/teem/lib -lteem | ||
12 : | |||
13 : | DIDEROTC = /Users/jhr/Work/Diderot/diderot-vis/bin/diderotc | ||
14 : | DIDEROTC_FLAGS = --namespace=ISO --target=c | ||
15 : | |||
16 : | iso2d: main.c iso2d.o | ||
17 : | $(CC) -o $@ $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) main.c iso2d.o | ||
18 : | |||
19 : | iso2d.o: iso2d.diderot | ||
20 : | $(DIDEROTC) $(DIDEROTC_FLAGS) iso2d.diderot | ||
21 : | |||
22 : | clean: | ||
23 : | rm -rf iso2d iso2d.o iso2d.c iso2d.h |
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |