]> git.mxchange.org Git - flightgear.git/blob - Controls/Makefile
Initial revision.
[flightgear.git] / Controls / Makefile
1 #---------------------------------------------------------------------------
2 # Makefile
3 #
4 # Written by Curtis Olson, started May 1997.
5 #
6 # $Id$
7 # (Log is kept at end of this file)
8 #---------------------------------------------------------------------------
9
10
11 TARGET = stamp-done
12
13 CFILES = 
14 HFILES = controls.h
15 OFILES = $(CFILES:.c=.o)
16
17 CC = gcc
18 CFLAGS = -g -Wall
19 # CFLAGS = -O2 -Wall
20
21 AR = ar
22
23 INCLUDES = 
24
25 LIBS = 
26
27
28 #---------------------------------------------------------------------------
29 # Primary Targets
30 #---------------------------------------------------------------------------
31
32 $(TARGET): $(OFILES) $(HFILES)
33         touch stamp-done
34
35 all: $(TARGET)
36
37 clean:
38         rm -f *.o $(TARGET) *~ core
39
40
41 #---------------------------------------------------------------------------
42 # Secondary Targets
43 #---------------------------------------------------------------------------
44
45 controls.h: ../limits.h
46         touch controls.h
47
48
49 #---------------------------------------------------------------------------
50 # $Log$
51 # Revision 1.1  1997/05/16 15:59:47  curt
52 # Initial revision.
53 #