1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
############################################################################
#
# Typing the command below => results in the following being created
# make => lfg.o object
# make lfg.o => lfg.o object
#
# Object files created during the compilation process can be deleted finally
# by typing
# make clean
# make realclean
############################################################################
SHELL = /bin/sh
include ../../make.CHOICES
LIBDIR = ../../$(LIB_REL_DIR)
SRCDIR = ..
CHKDIR = ../..
include $(SRCDIR)/make.$(PLAT)
all : lfg.o
lfg.o : $(SRCDIR)/interface.h lfg.c lfg.h $(SRCDIR)/multiply.h $(SRCDIR)/memory.h $(SRCDIR)/store.h $(SRCDIR)/fwrap_.h
$(CC) -c $(CFLAGS) $(FFXN) $(INLINEOPT) lfg.c -I$(SRCDIR)
clean :
rm -f *.o *.i
realclean :
rm -f *.o *.f *~ *.i core a.out
|