Makefile.common 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. #This is a make file with common rules for both x86 & x86-64
  2. all: directories test_cases
  3. cflatobjs += lib/pci.o
  4. cflatobjs += lib/pci-edu.o
  5. cflatobjs += lib/x86/setup.o
  6. cflatobjs += lib/x86/io.o
  7. cflatobjs += lib/x86/smp.o
  8. cflatobjs += lib/x86/vm.o
  9. cflatobjs += lib/x86/fwcfg.o
  10. cflatobjs += lib/x86/apic.o
  11. cflatobjs += lib/x86/atomic.o
  12. cflatobjs += lib/x86/desc.o
  13. cflatobjs += lib/x86/isr.o
  14. cflatobjs += lib/x86/acpi.o
  15. cflatobjs += lib/x86/stack.o
  16. OBJDIRS += lib/x86
  17. $(libcflat): LDFLAGS += -nostdlib
  18. $(libcflat): CFLAGS += -ffreestanding -I $(SRCDIR)/lib -I lib
  19. COMMON_CFLAGS += -m$(bits)
  20. COMMON_CFLAGS += -O1
  21. # stack.o relies on frame pointers.
  22. KEEP_FRAME_POINTER := y
  23. libgcc := $(shell $(CC) -m$(bits) --print-libgcc-file-name)
  24. # We want to keep intermediate file: %.elf and %.o
  25. .PRECIOUS: %.elf %.o
  26. FLATLIBS = lib/libcflat.a $(libgcc)
  27. %.elf: %.o $(FLATLIBS) $(SRCDIR)/x86/flat.lds $(cstart.o)
  28. $(CC) $(CFLAGS) -nostdlib -o $@ -Wl,-T,$(SRCDIR)/x86/flat.lds \
  29. $(filter %.o, $^) $(FLATLIBS)
  30. %.flat: %.elf
  31. $(OBJCOPY) -O elf32-i386 $^ $@
  32. tests-common = $(TEST_DIR)/vmexit.flat $(TEST_DIR)/tsc.flat \
  33. $(TEST_DIR)/smptest.flat $(TEST_DIR)/port80.flat \
  34. $(TEST_DIR)/realmode.flat $(TEST_DIR)/msr.flat \
  35. $(TEST_DIR)/hypercall.flat $(TEST_DIR)/sieve.flat \
  36. $(TEST_DIR)/kvmclock_test.flat $(TEST_DIR)/eventinj.flat \
  37. $(TEST_DIR)/s3.flat $(TEST_DIR)/pmu.flat $(TEST_DIR)/setjmp.flat \
  38. $(TEST_DIR)/tsc_adjust.flat $(TEST_DIR)/asyncpf.flat \
  39. $(TEST_DIR)/init.flat $(TEST_DIR)/smap.flat \
  40. $(TEST_DIR)/hyperv_synic.flat $(TEST_DIR)/hyperv_stimer.flat \
  41. $(TEST_DIR)/hyperv_connections.flat \
  42. ifdef API
  43. tests-api = api/api-sample api/dirty-log api/dirty-log-perf
  44. OBJDIRS += api
  45. endif
  46. test_cases: $(tests-common) $(tests) $(tests-api)
  47. $(TEST_DIR)/%.o: CFLAGS += -std=gnu99 -ffreestanding -I $(SRCDIR)/lib -I $(SRCDIR)/lib/x86 -I lib
  48. $(TEST_DIR)/realmode.elf: $(TEST_DIR)/realmode.o
  49. $(CC) -m32 -nostdlib -o $@ -Wl,-T,$(SRCDIR)/$(TEST_DIR)/realmode.lds $^
  50. $(TEST_DIR)/realmode.o: bits = 32
  51. $(TEST_DIR)/kvmclock_test.elf: $(TEST_DIR)/kvmclock.o
  52. $(TEST_DIR)/hyperv_synic.elf: $(TEST_DIR)/hyperv.o
  53. $(TEST_DIR)/hyperv_stimer.elf: $(TEST_DIR)/hyperv.o
  54. $(TEST_DIR)/hyperv_connections.elf: $(TEST_DIR)/hyperv.o
  55. arch_clean:
  56. $(RM) $(TEST_DIR)/*.o $(TEST_DIR)/*.flat $(TEST_DIR)/*.elf \
  57. $(TEST_DIR)/.*.d lib/x86/.*.d \
  58. $(tests-api) api/*.o api/*.a api/.*.d
  59. api/%.o: CXXFLAGS += -m32 -std=gnu++11
  60. api/%: LDLIBS += -lstdc++ -lpthread -lrt
  61. api/%: LDFLAGS += -m32
  62. api/libapi.a: api/kvmxx.o api/identity.o api/exception.o api/memmap.o
  63. $(AR) rcs $@ $^
  64. $(tests-api) : % : %.o api/libapi.a