Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ endif

EXE=multichase multiload fairness pingpong

.PHONY: all clean depend

all: $(EXE)

clean:
Expand All @@ -40,10 +42,9 @@ multichase: multichase.o permutation.o arena.o br_asm.o util.o

multiload: multiload.o permutation.o arena.o util.o

fairness: LDLIBS += -lm

expand.h: gen_expand
./gen_expand 200 >expand.h.tmp
perl ./gen_expand 200 >expand.h.tmp
mv expand.h.tmp expand.h

depend:
Expand Down