minix/servers/vm/i386/Makefile
Arun Thomas 1f9ce647cf Move archtypes.h, fpu.h, and stackframe.h
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.
2010-03-09 09:41:14 +00:00

18 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