1
0
Fork 0
flightgear/Simulator/Makefile

42 lines
807 B
Makefile
Raw Normal View History

1997-05-16 15:51:13 +00:00
#---------------------------------------------------------------------------
# Toplevel Project Makefile
#
# Written by Curtis Olson, started May 1997.
#
# $Id$
# (Log is kept at end of this file)
#---------------------------------------------------------------------------
CC = gcc
SUBDIRS = aircraft controls flight scenery
MAIN = gltk
all:
for dir in $(SUBDIRS) $(MAIN); do \
( cd $$dir; make CC=$(CC) CFLAGS=$(CFLAGS) ) ; \
done
install:
for dir in $(SUBDIRS) $(MAIN); do \
( cd $$dir; make CC=$(CC) CFLAGS=$(CFLAGS) install) ; \
done
clean:
-rm -f *~
for dir in $(SUBDIRS) $(MAIN); do \
(cd $$dir; make clean) ; \
done
#---------------------------------------------------------------------------
# $Log$
# Revision 1.1 1997/05/16 15:51:13 curt
# Initial revision.
#