SCM Repository
[diderot] / examples / boids / Makefile.in |
View of /examples/boids/Makefile.in
Parent Directory
|
Revision Log
Revision 3349 -
(download)
(annotate)
Tue Oct 27 15:16:36 2015 UTC (6 years, 8 months ago) by jhr
File size: 847 byte(s)
Tue Oct 27 15:16:36 2015 UTC (6 years, 8 months ago) by jhr
File size: 847 byte(s)
making copyrights consistent for all code in the repository
# Makefile for flocking animation demo # # This code is part of the Diderot Project (http://diderot-language.cs.uchicago.edu) # # COPYRIGHT (c) 2015 The University of Chicago # All rights reserved. # SHELL = /bin/sh CC = @CC@ CPPFLAGS = -I../util @CPPFLAGS@ @TEEM_CPPFLAGS@ CFLAGS = @CFLAGS@ -O3 ifeq ($(shell uname),Darwin) LIBS = -lm -framework OpenGL -framework GLUT else LIBS = -lGL -lm -lglut endif LDFLAGS = @LDPATHS@ @TEEM_LDFLAGS@ $(LIBS) DIDEROTC = @DIDEROTC@ DIDEROTC_FLAGS = --snapshot --namespace=BOID --disable-high-vn --disable-mid-vn --disable-low-vn --target=c UTIL_SRCS = ../util/util.c boid: main.c boids.o $(UTIL_SRCS) $(CC) -o $@ $(CPPFLAGS) $(CFLAGS) main.c boids.o $(UTIL_SRCS) $(LDFLAGS) boids.o: boids.diderot $(DIDEROTC) $(DIDEROTC_FLAGS) boids.diderot clean: rm -rf boids boids.o boids.c boids.h
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |