SCM Repository
Annotation of /examples/curve-lic/Makefile.in
Parent Directory
|
Revision Log
Revision 2872 - (view) (download)
1 : | jhr | 2872 | # Makefile for curve-lic demo |
2 : | # | ||
3 : | # COPYRIGHT (c) 2012 The Diderot Project | ||
4 : | # All rights reserved. | ||
5 : | # | ||
6 : | |||
7 : | SHELL = /bin/sh | ||
8 : | |||
9 : | CC = @CC@ | ||
10 : | CPPFLAGS = -I../util @CPPFLAGS@ @TEEM_CPPFLAGS@ @ATB_CPPFLAGS@ @GLFW_CFLAGS@ | ||
11 : | CFLAGS = @CFLAGS@ -O3 | ||
12 : | LDFLAGS = @LDPATHS@ @TEEM_LDFLAGS@ @ATB_LDFLAGS@ @GLFW_LIBS@ -lpng | ||
13 : | |||
14 : | # override this variable to change the runtime platform | ||
15 : | DIDEROT_TARGET = c | ||
16 : | |||
17 : | DIDEROTC = @DIDEROTC@ | ||
18 : | DIDEROTC_FLAGS = --snapshot --namespace=ISO --target=$(DIDEROT_TARGET) | ||
19 : | |||
20 : | curve-lic: main.c iso2d.o $(UTIL_SRCS) | ||
21 : | $(CC) -o $@ $(CPPFLAGS) $(CFLAGS) main.c iso2d.o $(LDFLAGS) | ||
22 : | |||
23 : | rcast.o: rcast.diderot | ||
24 : | $(DIDEROTC) $(DIDEROTC_FLAGS) --namespace=RCAST rcast.diderot | ||
25 : | |||
26 : | lic.o: lic.diderot | ||
27 : | $(DIDEROTC) $(DIDEROTC_FLAGS) --namespace=LIC lic.diderot | ||
28 : | |||
29 : | clean: | ||
30 : | rm -rf curve-lic *.o rcast.c rcast.h lic.c lic.h |
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |