blob: 41e7a1819593ceaa4797b6a40fe80e2349f7973e [file] [log] [blame]
CPP := g++
TEST_OBJS := page-access-wrap.o
TEST_PROGS := $(TEST_OBJS:.o=)
# ==== Rules ==================================================================
.PHONY: default clean
default: $(TEST_PROGS)
clean:
$(RM) $(TEST_OBJS) $(TEST_PROGS)
$(TEST_PROGS): $(TEST_OBJS)
$(CPP) -static -o $@ $@.o
%.o: %.c Makefile
$(CPP) -c -o $@ $*.c -msse3