-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfitz.m
More file actions
executable file
·25 lines (19 loc) · 833 Bytes
/
fitz.m
File metadata and controls
executable file
·25 lines (19 loc) · 833 Bytes
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
include $(HOME)/programs/Make.defs
SRC = fitz.f fitz.m \
readspec.f showspec.f logrebin.f deshiftz2.f contsubmed.f \
readz.f boxcar.f compmean.f submean.f normalize.f zerobad.f \
contsubconst.f medsmooth.f findends.f cleanends.f blankout.f \
scalenoise.f readevects.f blankoutsky.f svdsubs.f findindex.f \
findlocmin.f findmultmin.f
OBJS = fitz.o \
readspec.o showspec.o logrebin.o deshiftz2.o contsubmed.o \
readz.o boxcar.o compmean.o submean.o normalize.o zerobad.o \
contsubconst.o medsmooth.o findends.o cleanends.o blankout.o \
scalenoise.o readevects.o blankoutsky.o svdsubs.o findindex.o \
findlocmin.o findmultmin.o
fitz: $(OBJS)
$(FC) -O -o fitz $(OBJS) $(PGPLOT) $(FITSIOWRAP) $(NUMREC)
clean:
rm fitz $(OBJS)
tarball:
tar cvf fitz.tar $(SRC)