Subversion Repositories shark

Rev

Blame | Last modification | View Log | RSS feed

#
#
#

ifndef BASE
BASE=../..
endif
include $(BASE)/config/config.mk

PROGS = step1 step1b step2 step2b step3 step4

include $(BASE)/config/example.mk

step1: step1.c
        gcc step1.c -o step1

step1b: step1b.c
        gcc step1b.c -o step1b

runstep1: step1 length.dat
        step1 < length.dat > shape.dat

runstep1b: step1b length.dat
        step1b < length.dat > shape.dat

step2:
        make -f $(SUBMAKE) APP=step2 INIT= OTHEROBJS="tune.o" OTHERINCL=

step2b:
        make -f $(SUBMAKE) APP=step2b INIT= OTHEROBJS="tune.o" OTHERINCL=

step3:
        make -f $(SUBMAKE) APP=step3 INIT= OTHEROBJS="tune.o" OTHERINCL=

step4: step4.c
        gcc step4.c -o step4

runstep4: step4 hpattern.dat vpattern.dat
        step4 hpattern.dat vpattern.dat > crunch.dat

clean::
        rm *.o *.exe