Skip to content

Commit

Permalink
updated Makefile to accomodate if.h and if.c
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeMFS committed Jan 7, 2023
1 parent 92cf3e2 commit 6d556da
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ SI_DEPS = cm.h dna.h msg.h rand.h buffer.h common.h strings.h param.h
STRINGS_DEPS = msg.h
TOLERANT_DEPS = strings.h pmodels.h buffer.h
VI_DEPS = dna.h msg.h buffer.h common.h strings.h param.h paint.h

IF_DEPS = dna.h msg.h buffer.h common.h strings.h param.h
PROG = $(BIN)/AlcoR
OBJS = mem.o positions.o stats.o rand.o math.o buffer.o chash.o carray.o \
cache.o filter.o keys.o msg.o strings.o common.o alphabet.o dist.o \
dna.o kmer.o levels.o ex.o paint.o param.o pmodels.o tolerant.o cm.o vi.o lr.o si.o
dna.o kmer.o levels.o ex.o paint.o param.o pmodels.o tolerant.o if.o cm.o vi.o lr.o si.o
#-----------------------------------------------------------------------------

all:
Expand Down Expand Up @@ -64,6 +64,8 @@ ex.o: ex.c ex.h $(DEPS) $(EX_DEPS)
$(CC) -c $(CFLAGS) ex.c
filter.o: filter.c filter.h $(DEPS)
$(CC) -c $(CFLAGS) filter.c
if.o: if.c if.h $(DEPS) $(IF_DEPS)
$(CC) -c $(CFLAGS) if.c
keys.o: keys.c keys.h $(DEPS)
$(CC) -c $(CFLAGS) keys.c
kmer.o: kmer.c kmer.h $(DEPS) $(KMER_DEPS)
Expand Down

0 comments on commit 6d556da

Please sign in to comment.