]> git.mxchange.org Git - flightgear.git/blobdiff - Controls/Makefile
Working on Makefile structure.
[flightgear.git] / Controls / Makefile
index 5d5b15f4b2ef0179ac27c344f8abf2a8f68d794f..be947260700d1e40383258cb062f172a4f747ce7 100644 (file)
@@ -31,8 +31,7 @@ HFILES = controls.h
 OFILES = $(CFILES:.c=.o)
 
 CC = gcc
-CFLAGS = -g -Wall
-# CFLAGS = -O2 -Wall
+CFLAGS = $(FG_CFLAGS)
 
 AR = ar
 
@@ -50,23 +49,34 @@ $(TARGET): $(OFILES)
 
 all: $(TARGET)
 
+# depend:
+#      $(CC) -MM *.c > depend                     
+
 clean:
-       rm -f *.o $(TARGET) *~ core
+       rm -f *.o $(TARGET) lib*.a *~ core
 
 
 #---------------------------------------------------------------------------
 # Secondary Targets
 #---------------------------------------------------------------------------
 
-controls.h: ../limits.h
-       touch controls.h
+include depend
 
-controls.o: controls.c controls.h ../Aircraft/aircraft.h
+controls.o:
        $(CC) $(CFLAGS) $(INCLUDES) -c controls.c
 
 
 #---------------------------------------------------------------------------
 # $Log$
+# Revision 1.7  1997/06/27 20:03:33  curt
+# Working on Makefile structure.
+#
+# Revision 1.6  1997/06/26 19:08:29  curt
+# Restructuring make, adding automatic "make dep" support.
+#
+# Revision 1.5  1997/06/25 15:39:46  curt
+# Minor changes to compile with rsxnt/win32.
+#
 # Revision 1.4  1997/06/21 17:12:47  curt
 # Capitalized subdirectory names.
 #