1f9ce647cf
Move archtypes.h to include/ dir, since several servers require it. Move fpu.h and stackframe.h to arch-specific header directory. Make source files and makefiles aware of the new header locations.
17 lines
211 B
Makefile
17 lines
211 B
Makefile
|
|
include /etc/make.conf
|
|
|
|
OBJ = vm.o pagetable.o arch_pagefaults.o util.o
|
|
|
|
CPPFLAGS=-I.
|
|
CFLAGS = $(CPROFILE) $(CPPFLAGS)
|
|
|
|
all: $(OBJ)
|
|
|
|
clean:
|
|
rm -f $(OBJ)
|
|
|
|
depend:
|
|
mkdep "$(CC) -E $(CPPFLAGS)" *.c > .depend
|
|
|
|
|