# # Main RTLinux system. # # Copyright (C) 1999 FSMLabs # Written by Cort Dougan , Victor Yodaiken # # include ../../../rtl.mk RTL_A = $(shell cd ..;pwd) CFLAGS = -fno-builtin -Wall -O2 -I../h/ all: rtl_time_xeno.c events.o printf.o traps.o hypervisor.o setup.o malloc.o gcc -nostdinc -D__KERNEL__ -I../../../include -I../../../include/posix -I../../../include/linux-2.4.20 -c rtl_time_xeno.c -o rtl_time_xeno.o mv -f setup.o ../../../modules/ mv -f malloc.o ../../../modules/ mv -f rtl_time_xeno.o ../../../modules/ mv -f hypervisor.o ../../../modules/ mv -f traps.o ../../../modules/ mv -f printf.o ../../../modules/ mv -f events.o ../../../modules/ main: all clean: # rm -f arch find . \( -name '*~' -o -name '*.o' -o -name core \) -exec /bin/rm -r '{}' \; .PHONY: dummy include $(RTL_DIR)/Rules.make