1
0
Fork 0
flightgear/LaRCsim/Makefile

80 lines
1.8 KiB
Makefile
Raw Normal View History

1997-05-29 00:09:51 +00:00
#---------------------------------------------------------------------------
# Makefile
#
# Written by Curtis Olson, started May 1997.
#
# $Id$
# (Log is kept at end of this file)
#---------------------------------------------------------------------------
TARGET = libLaRCsim.a
1997-05-29 00:09:51 +00:00
LaRCsimFILES = atmos_62.c ls_accel.c ls_aux.c ls_geodesy.c ls_gravity.c \
1997-06-21 17:12:38 +00:00
ls_step.c ls_model.c default_model_routines.c ls_init.c ls_sync.c
1997-05-29 00:09:51 +00:00
NavionFILES = navion_aero.c navion_engine.c navion_gear.c navion_init.c
InterfaceFILES = ls_interface.c
CFILES = $(LaRCsimFILES) $(NavionFILES) $(InterfaceFILES)
OFILES = $(CFILES:.c=.o)
CC = gcc
CFLAGS = $(FG_CFLAGS)
1997-05-29 00:09:51 +00:00
AR = ar
INCLUDES =
LIBS = -lm
#---------------------------------------------------------------------------
# Primary Targets
#---------------------------------------------------------------------------
$(TARGET): $(OFILES)
$(AR) rv $(TARGET) $(OFILES)
simtest: $(TARGET) LaRCsim.o
$(CC) -o simtest LaRCsim.o libLaRCsim.a $(LIBS)
all: $(TARGET)
1997-06-27 20:03:31 +00:00
# depend:
# $(CC) -MM *.c > depend
1997-05-29 00:09:51 +00:00
clean:
rm -f *.o $(TARGET) *~ core
#---------------------------------------------------------------------------
# Secondary Targets
#---------------------------------------------------------------------------
include depend
1997-05-29 00:09:51 +00:00
#---------------------------------------------------------------------------
# $Log$
1997-06-27 20:03:31 +00:00
# Revision 1.5 1997/06/27 20:03:34 curt
# Working on Makefile structure.
#
# Revision 1.4 1997/06/26 19:08:30 curt
# Restructuring make, adding automatic "make dep" support.
#
1997-06-21 17:12:38 +00:00
# Revision 1.3 1997/06/21 17:12:50 curt
# Capitalized subdirectory names.
#
# Revision 1.2 1997/06/17 16:52:02 curt
# Timer interval stuff now uses gettimeofday() instead of ftime()
#
1997-05-29 00:09:51 +00:00
# Revision 1.1 1997/05/29 00:09:52 curt
# Initial Flight Gear revision.
#
# Revision 1.1 1997/05/16 16:04:44 curt
# Initial revision.
#