~meshing/meshing/release

« back to all changes in this revision

Viewing changes to dev/old/shape/Makefile

  • Committer: Adam Candy
  • Date: 2013-07-23 21:17:22 UTC
  • Revision ID: adam.candy@imperial.ac.uk-20130723211722-3bgny7mpcvslm35u
Final fix.
Licensing formally implemented.  Please update your branches and any derivative works.
Additional tidying and restructure.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#  
31
31
##########################################################################
32
32
 
33
 
##########################################################################
34
 
#  
35
 
#  QGIS-meshing plugins.
36
 
#  
37
 
#  Copyright (C) 2012-2013 Imperial College London and others.
38
 
#  
39
 
#  Please see the AUTHORS file in the main source directory for a
40
 
#  full list of copyright holders.
41
 
#  
42
 
#  Dr Adam S. Candy, adam.candy@imperial.ac.uk
43
 
#  Applied Modelling and Computation Group
44
 
#  Department of Earth Science and Engineering
45
 
#  Imperial College London
46
 
#  
47
 
#  This library is free software; you can redistribute it and/or
48
 
#  modify it under the terms of the GNU Lesser General Public
49
 
#  License as published by the Free Software Foundation,
50
 
#  version 2.1 of the License.
51
 
#  
52
 
#  This library is distributed in the hope that it will be useful,
53
 
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
54
 
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
55
 
#  Lesser General Public License for more details.
56
 
#  
57
 
#  You should have received a copy of the GNU Lesser General Public
58
 
#  License along with this library; if not, write to the Free Software
59
 
#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
60
 
#  USA
61
 
#  
62
 
##########################################################################
63
 
 
 
33
CC      = gcc
 
34
CFLAGS  = -Wall
 
35
 
 
36
.SUFFIXES: .c .o
 
37
 
 
38
.PHONY: all clean
 
39
 
 
40
all : run
 
41
 
 
42
 
 
43
run: produceGeo.c
 
44
        $(CC) $(CFLAGS) -o $@ $^
 
45
 
 
46
clean:
 
47
        rm -f *.o
 
48
        rm -f run