The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / dhrystone / Makefile
1 CPPFLAGS += -DNO_PROTOTYPES=1
2 LDLIBS += -lm
3
4 all: dhrystone
5
6 dhrystone: dhry_1.o dhry_2.o
7         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS)
8
9 clean:
10         rm -f *.o dhrystone
11
12 .PHONY: all clean