systemc: Add a missing override.
[gem5.git] / tests / test-progs / mwait / Makefile
1
2 CPP := g++
3
4 TEST_OBJS := mwait.o
5 TEST_PROGS := $(TEST_OBJS:.o=)
6
7 # ==== Rules ==================================================================
8
9 .PHONY: default clean
10
11 default: $(TEST_PROGS)
12
13 clean:
14 $(RM) $(TEST_OBJS) $(TEST_PROGS)
15
16 $(TEST_PROGS): $(TEST_OBJS)
17 $(CPP) -static -o $@ $@.o pthread.o
18
19 %.o: %.c Makefile
20 $(CPP) -c -o $@ $*.c -msse3