Files
sics/difrac/Makefile
cvs 714b8ae84d - Fixed a bug which caused the SICServer to die when a socket was broken.
- Fixed many things in DIFRAC subsystem:
  * Recoded tcentr.f etc so that the course centering will work and will not
    go into an endless loop.
  * fixed boundary overwrites which occurred when yesno or alfnum where
    uset to get a single character and several were given.
  * Addeded documentation for DIFRAC
- Added tcl-files which  support the WWW status system
2000-03-31 13:16:50 +00:00

44 lines
1.3 KiB
Makefile

#---------------------------------------------------------------------------
# Makefile for the DIFRAC library for SICS.
#
# Mark Koennecke, November 1999
#----------------------------------------------------------------------------
CFLAGS = -C -g -c
FL = f77 $(CFLAGS)
ROOT = ..
LIBS = $(ROOT)\libs
OBJECTS=difini.o \
ang180.o angval.o begin.o \
cent8.o cfind.o demo1e.o align.o \
centre.o mod360.o profil.o range.o sinmat.o cellls.o \
wxw2t.o angcal.o basinp.o comptn.o orcel2.o inchkl.o \
linprf.o lsormt.o mesint.o goloop.o ormat3.o blind.o \
params.o pltprf.o pcount.o prtang.o prnbas.o prnint.o \
grid.o sammes.o cellsd.o stdmes.o cntref.o indmes.o \
wrbas.o reindx.o rcpcor.o lotem.o nexseg.o lister.o \
oscil.o pfind.o pscan.o peaksr.o sgprnh.o \
difint.o tcentr.o tfind.o fndsys.o \
dhgen.o setrow.o creduc.o cinput.o \
burger.o angrw.o bigchi.o \
eulkap.o trics.o swrite.o
GENS = yesno.o freefm.o alfnum.o matrix.o \
sgroup.o latmod.o sgrmat.o \
sglatc.o sglpak.o sgerrs.o sgmtml.o \
sgtrcf.o \
setiou.o ibmfil.o
all: lib
clean:
rm *.o
lib: $(OBJECTS) $(GENS)
- rm libdif.a
ar cr libdif.a $(OBJECTS) $(GENS)
ranlib libdif.a
.f.o:
$(FL) $*.f