Skip to content
Snippets Groups Projects
Commit 6c80f5e3 authored by joeri.brackenhoff's avatar joeri.brackenhoff
Browse files

ogun

parent b659f388
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ LIBS += -L$L -lgenfft -lm $(LIBSM)
#ALL: fmute marchenko marchenko2
ALL: fmute marchenko
ALL: fmute marchenko test
SRCJ = fmute.c \
getFileInfo.c \
......@@ -20,6 +20,15 @@ SRCJ = fmute.c \
docpkge.c \
getpars.c
SRCT = test.c \
getFileInfo3D.c \
readShotData3D.c \
wallclock_time.c \
verbosepkg.c \
atopkge.c \
docpkge.c \
getpars.c
SRCH = marchenko.c \
getFileInfo.c \
readData.c \
......@@ -40,6 +49,11 @@ OBJJ = $(SRCJ:%.c=%.o)
fmute: $(OBJJ)
$(CC) $(LDFLAGS) $(OPTC) $(CFLAGS) -o fmute $(OBJJ) $(LIBS)
OBJT = $(SRCT:%.c=%.o)
test: $(OBJT)
$(CC) $(LDFLAGS) $(OPTC) $(CFLAGS) -o test $(OBJT) $(LIBS)
OBJH = $(SRCH:%.c=%.o)
marchenko: $(OBJH)
......@@ -50,18 +64,15 @@ OBJH2 = $(SRCH2:%.c=%.o)
marchenko2: $(OBJH2)
$(CC) $(LDFLAGS) $(OPTC) $(CFLAGS) -o marchenko2 $(OBJH2) $(LIBS)
install: fmute marchenko
install: fmute marchenko test
cp fmute $B
cp marchenko $B
cp test $B
# cp marchenko2 $B
clean:
rm -f core fmute $(OBJJ) marchenko $(OBJH) marchenko2 $(OBJH2)
rm -f core fmute $(OBJJ) marchenko $(OBJH) marchenko2 $(OBJH2) test $(OBJT)
realclean: clean
rm -f $B/fmute $B/marchenko $B/marchenko2
rm -f $B/fmute $B/marchenko $B/marchenko2 $B/test
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment