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

Fixed broken makefile

git-svn-id: https://svn.ligo.caltech.edu/svn/bayeswave/trunk@114 c56465c9-8126-4a4f-9d7d-ac845eff4865
parent 1c3a6bcf
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