Skip to content
Snippets Groups Projects
Commit b376a912 authored by Jonah Kanner's avatar Jonah Kanner :nerd:
Browse files

Fixed makefile

git-svn-id: https://svn.ligo.caltech.edu/svn/bayeswave/trunk@116 c56465c9-8126-4a4f-9d7d-ac845eff4865
parent 4e8fcf72
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ CCFLAGS = -Wall -g -std=gnu99 -O3 -pedantic
OBJS = Subroutines.o BayesLine.o
all: $(OBJS) BayesWaveBurst BayesWavePostPEC
all: $(OBJS) BayesWaveBurst BayesWavePost
BayesLine.o : BayesLine.c BayesLine.h
gcc $(CCFLAGS) -c BayesLine.c $($INCDIR:%=-I%)
......@@ -17,9 +17,9 @@ Subroutines.o : Subroutines.c BayesLine.c BayesLine.h Declarations.h Constants.h
BayesWaveBurst: BayesWaveBurst.c Declarations.h Constants.h numrec.h $(OBJS)
gcc $(CCFLAGS) -o BayesWaveBurst BayesWaveBurst.c $(OBJS) $(LIBDIR:%=-L%) $(INCDIR:%=-I%) $(LIBS:%=-l%)
BayesWavePostPEC: BayesWavePostPEC.c Declarations.h Constants.h numrec.h $(OBJS)
gcc $(CCFLAGS) -o BayesWavePostPEC BayesWavePostPEC.c $(OBJS) $(LIBDIR:%=-L%) $(INCDIR:%=-I%) $(LIBS:%=-l%)
BayesWavePost: BayesWavePost.c Declarations.h Constants.h numrec.h $(OBJS)
gcc $(CCFLAGS) -o BayesWavePost BayesWavePost.c $(OBJS) $(LIBDIR:%=-L%) $(INCDIR:%=-I%) $(LIBS:%=-l%)
clean:
rm *.o BayesWaveBurst BayesWavePostPEC
rm *.o BayesWaveBurst BayesWavePost
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