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

3D

parent e3d9471c
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ include ../Make_include ...@@ -6,7 +6,7 @@ include ../Make_include
#OPTC += -openmp #OPTC += -openmp
#OPTC += -g -O0 #OPTC += -g -O0
ALL: makemod makewave extendModel fconv correigen green green3D basop syn2d mat2su ftr1d ALL: makemod makewave extendModel fconv correigen green green3D basop syn2d mat2su ftr1d ampdet
SRCM = \ SRCM = \
makemod.c \ makemod.c \
...@@ -133,6 +133,15 @@ SRCT = ftr1d.c \ ...@@ -133,6 +133,15 @@ SRCT = ftr1d.c \
docpkge.c \ docpkge.c \
getpars.c getpars.c
SRCAD = ampdet.c \
getFileInfo.c \
readData.c \
writeData.c \
verbosepkg.c \
atopkge.c \
docpkge.c \
getpars.c
OBJM = $(SRCM:%.c=%.o) OBJM = $(SRCM:%.c=%.o)
makemod: $(OBJM) makemod: $(OBJM)
...@@ -188,7 +197,12 @@ OBJT = $(SRCT:%.c=%.o) ...@@ -188,7 +197,12 @@ OBJT = $(SRCT:%.c=%.o)
ftr1d: $(OBJT) ftr1d: $(OBJT)
$(CC) $(LDFLAGS) $(OPTC) $(CFLAGS) -o ftr1d $(OBJT) $(LIBS) $(CC) $(LDFLAGS) $(OPTC) $(CFLAGS) -o ftr1d $(OBJT) $(LIBS)
install: makemod makewave extendModel fconv correigen green green3D basop syn2d mat2su ftr1d OBJAD = $(SRCAD:%.c=%.o)
ampdet: $(OBJAD)
$(CC) $(LDFLAGS) $(OPTC) $(CFLAGS) -o ampdet $(OBJAD) $(LIBS)
install: makemod makewave extendModel fconv correigen green green3D basop syn2d mat2su ftr1d
cp makemod $B cp makemod $B
cp makewave $B cp makewave $B
cp extendModel $B cp extendModel $B
...@@ -202,7 +216,7 @@ install: makemod makewave extendModel fconv correigen green green3D basop syn2d ...@@ -202,7 +216,7 @@ install: makemod makewave extendModel fconv correigen green green3D basop syn2d
cp ftr1d $B cp ftr1d $B
clean: clean:
rm -f core $(OBJM) makemod $(OBJW) makewave $(OBJE) extendModel $(OBJF) fconv $(OBJG) $(OBJC) correigen green $(OBJG3) green3D $(OBJB) basop $(OBJJ) syn2d $(OBJS) mat2su $(OBJA) ftr1d $(OBJT) rm -f core $(OBJM) makemod $(OBJW) makewave $(OBJE) extendModel $(OBJF) fconv $(OBJG) $(OBJC) correigen green $(OBJG3) green3D $(OBJB) basop $(OBJJ) syn2d $(OBJS) mat2su $(OBJA) ftr1d $(OBJT) ampdet $(OBJAD)
realclean: clean realclean: clean
rm -f $B/makemod $B/makewave $B/extendModel $B/fconv $B/correigen $B/green $B/green3D $B/basop $B/syn2d $B/mat2su $B/ftr1d rm -f $B/makemod $B/makewave $B/extendModel $B/fconv $B/correigen $B/green $B/green3D $B/basop $B/syn2d $B/mat2su $B/ftr1d
......
No preview for this file type
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