
- enable the paging support - redesign of the APIC code TODO: - Currently, we are not able to start user-level applications. - The RTL8139 driver does not longer work. Perhaps, a bug in the output function. - The APIC codes doesn't work on all systems. Therefore, the code is currently disabled. git-svn-id: http://svn.lfbs.rwth-aachen.de/svn/scc/trunk/MetalSVM@326 315a16e6-25f9-4109-90ae-ca3045a26c18
20 lines
360 B
Makefile
20 lines
360 B
Makefile
C_source = main.c tasks.c syscall.c tests.c echo.c ping.c init.c
|
|
|
|
OBJS += $(patsubst %.c, %.o, $(filter %.c, $(C_source)))
|
|
|
|
# other implicit rules
|
|
%.o : %.c
|
|
$(CC) -c -D__KERNEL__ $(CFLAGS) -o $@ $<
|
|
|
|
default: $(OBJS)
|
|
|
|
all: $(OBJS)
|
|
|
|
clean:
|
|
$(RM) *.o *~ $(NAME)
|
|
|
|
depend:
|
|
$(CC) -MM $(CFLAGS) $(C_source) > Makefile.dep
|
|
|
|
-include Makefile.dep
|
|
# DO NOT DELETE
|