X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=flatland.git;a=blobdiff_plain;f=Makefile;h=1bdce0a2c7629dc36ffccab648e4b2813bbbc795;hp=e8009491f88ab2d0458e9ff84647becd0a30ea54;hb=c1f1040936d977cd2b3a276c725e223198377d2a;hpb=26abc735ca75a78974c7ced091035e8c27ca1c00 diff --git a/Makefile b/Makefile index e800949..1bdce0a 100644 --- a/Makefile +++ b/Makefile @@ -1,23 +1,24 @@ -# dyncnn is a deep-learning algorithm for the prediction of -# interacting object dynamics # -# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ -# Written by Francois Fleuret +# flatland is a simple 2d physical simulator # -# This file is part of dyncnn. +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ +# Written by Francois Fleuret # -# dyncnn is free software: you can redistribute it and/or modify it -# under the terms of the GNU General Public License version 3 as -# published by the Free Software Foundation. +# This file is part of flatland # -# dyncnn is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. +# flatland is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License version 3 as +# published by the Free Software Foundation. +# +# flatland is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with flatland. If not, see . # -# You should have received a copy of the GNU General Public License -# along with dyncnn. If not, see . ifeq ($(DEBUG),yes) CXXFLAGS = -fPIC -Wall -g -DDEBUG @@ -29,20 +30,17 @@ CXXFLAGS += -I/usr/include/cairo -DCAIRO_SUPPORT LDFLAGS += -lcairo -all: flatland.so TAGS +all: flatland_generator.so TAGS TAGS: *.cc *.h etags *.cc *.h -flatland.so: flatland.o misc.o \ - universe.o \ - polygon.o \ +flatland_generator.so: \ + sequence_generator.o misc.o \ + polygon.o universe.o \ canvas.o canvas_cairo.o $(CXX) $(CXXFLAGS) $(LDFLAGS) -shared -fPIC -o $@ $^ -test: test.c flatland.so - $(CC) flatland.so -o test test.c - Makefile.depend: *.h *.cc Makefile $(CC) $(CXXFLAGS) -M *.cc > Makefile.depend