]> git.mxchange.org Git - flightgear.git/blob - FixObj/Makefile
0061b1213a67be7a4842c0717b0af528ea1dcb16
[flightgear.git] / FixObj / Makefile
1 #---------------------------------------------------------------------------
2 # Makefile
3 #
4 # Written by Curtis Olson, started October 1997.
5 #
6 # Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
7 #
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #
22 # $Id$
23 # (Log is kept at end of this file)
24 #---------------------------------------------------------------------------
25
26
27 TARGET = fixobj
28
29 CFILES = main.c obj.c
30 OFILES = $(CFILES:.c=.o)
31
32
33 include ../make.inc
34
35
36 CFLAGS = $(FG_CFLAGS) -g
37
38 LIBS = ../../Src/Math/libMath.a -lm
39
40
41 #---------------------------------------------------------------------------
42 # Primary Targets
43 #---------------------------------------------------------------------------
44
45 all: $(TARGET)
46
47 $(TARGET): $(OFILES)
48         $(CC) $(OFILES) -o $(TARGET) $(LIBS)
49
50 clean:
51         rm -f *.o $(TARGET) lib*.a *.os2 *~ core
52
53 realclean: clean
54
55
56 #---------------------------------------------------------------------------
57 # Secondary Targets
58 #---------------------------------------------------------------------------
59
60 makedepend:
61         $(CC) -MM *.c > depend
62
63 include depend
64
65 main.o: main.c
66         $(CC) $(CFLAGS) -c main.c -o $@
67
68 obj.o: obj.c
69         $(CC) $(CFLAGS) -c obj.c -o $@
70
71
72 #---------------------------------------------------------------------------
73 # $Log$
74 # Revision 1.1  1997/12/08 19:28:54  curt
75 # Initial revision.
76 #