[BACK]Return to Makefile.inc CVS log [TXT][DIR] Up to [local] / prex / usr / lib / posix / process

File: [local] / prex / usr / lib / posix / process / Makefile.inc (download)

Revision 1.1.1.1 (vendor branch), Tue Aug 19 12:47:00 2008 UTC (15 years, 10 months ago) by nbrk
Branch: MAIN, KOHSUKE
CVS Tags: PREX_0_8_BASE, HEAD
Changes since 1.1: +0 -0 lines

Initial import of Prex, Portable Real-time Embedded POSIX microkernel system.
I have totally new directions in my development (more focused on real hardware, not virtual one).

Old hacks are available in prex-old module. They will be carefully re-designed and merged soon.

VPATH:=	$(SRCDIR)/usr/lib/posix/process:$(VPATH)

SRCS+=	__process.c kill.c killpg.c \
	getpgid.c getpgrp.c getpid.c getppid.c \
	getuid.c geteuid.c setuid.c seteuid.c \
	getgid.c setgid.c getegid.c setegid.c \
	setsid.c getsid.c \
	nice.c setpgid.c setpgrp.c sleep.c wait.c waitpid.c _exit.c \
	getpriority.c setpriority.c

ifeq ($(CONFIG_MMU),y)
SRCS+=	fork.c
else
SRCS+=	fork_nommu.c
endif