# # Main RTLinux system. # # Copyright (C) 1999 FSMLabs # Written by Cort Dougan , Victor Yodaiken # # include ../../../rtl.mk all: setup.o malloc.o rtl_time.o sw.o mv -f setup.o ../../../modules/ mv -f malloc.o ../../../modules/ mv -f rtl_time.o ../../../modules/ mv -f sw.o ../../../modules/ main: all sw.o: sw.S ../../../include/rtl_sched.h $(CC) ${INCLUDE} ${CFLAGS} -D__ASSEMBLY__ -o sw.o -c sw.S clean: # rm -f arch find . \( -name '*~' -o -name '*.o' -o -name core \) -exec /bin/rm -r '{}' \; .PHONY: dummy include $(RTL_DIR)/Rules.make