Skip to content
Snippets Groups Projects
Commit 1af21d3a authored by Florian Pose's avatar Florian Pose
Browse files

Makefiles nochmals verbessert.

parent fd928a65
No related branches found
No related tags found
No related merge requests found
#---------------------------------------------------------------- #------------------------------------------------------------------------------
# #
# Globales Makefile # Globales Makefile
# #
...@@ -6,27 +6,30 @@ ...@@ -6,27 +6,30 @@
# #
# $Id$ # $Id$
# #
#---------------------------------------------------------------- #------------------------------------------------------------------------------
CONFIG_FILE = ethercat.conf ifneq ($(KERNELRELEASE),)
ifeq ($(CONFIG_FILE),$(wildcard $(CONFIG_FILE))) #------------------------------------------------------------------------------
include $(CONFIG_FILE) # Kbuild-Abschnitt
endif
obj-m := drivers/ mini/ obj-m := drivers/ rt/ mini/
ifeq ($(MAKE_RT),yes) #------------------------------------------------------------------------------
obj-m += rt/
endif
#---------------------------------------------------------------- else
all: #------------------------------------------------------------------------------
# Default-Abschnitt
include ethercat.conf
modules:
$(MAKE) -C $(KERNELDIR) M=`pwd` modules $(MAKE) -C $(KERNELDIR) M=`pwd` modules
clean: clean:
$(MAKE) -C $(KERNELDIR) M=`pwd` clean $(MAKE) -C $(KERNELDIR) M=`pwd` clean
rm -rvf */.tmp_versions
doc docs: doc docs:
doxygen Doxyfile doxygen Doxyfile
...@@ -43,3 +46,5 @@ config conf $(CONFIG_FILE): ...@@ -43,3 +46,5 @@ config conf $(CONFIG_FILE):
@echo "$(CONFIG_FILE) erstellt." @echo "$(CONFIG_FILE) erstellt."
#---------------------------------------------------------------- #----------------------------------------------------------------
endif
...@@ -24,17 +24,11 @@ else ...@@ -24,17 +24,11 @@ else
#---------------------------------------------------------------- #----------------------------------------------------------------
# Default-Abschnitt # Default-Abschnitt
CONFIG_FILE = ../ethercat.conf modules:
PWD = $(shell pwd) $(MAKE) -C ..
include $(CONFIG_FILE) # Für KERNELDIR
default:
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
clean: clean:
$(MAKE) -C $(KERNELDIR) M=$(PWD) clean $(MAKE) -C .. clean
#---------------------------------------------------------------- #----------------------------------------------------------------
......
# Comment/uncomment the following line to disable/enable debugging #------------------------------------------------------------------------------
#DEBUG = y #
# Makefile Echtzeitmodule
#
# Add your debugging flag (or not) to CFLAGS # $Id$
ifeq ($(DEBUG),y) #
DEBFLAGS = -O -g -DSHORT_DEBUG # "-O" is needed to expand inlines #------------------------------------------------------------------------------
else
DEBFLAGS = -O2
endif
CFLAGS += $(DEBFLAGS)
CFLAGS += -I..
RTLIB = /vol/projekte/msr_messen_steuern_regeln/linux/kernel_space/rt_lib-4.0.0-2.6krnl
#Suchpfad fr die Dateien aus dem RT-Lib-Verzeichnis
VPATH := $(RTLIB)/msr-core:$(RTLIB)/msr-control:$(RTLIB)/msr-hwdriver:$(RTLIB)/msr-math:$(RTLIB)/msr-misc:$(RTLIB)/msr-utils
#Datei aus dem RT-Libverzeichnis fr dies Projekt
RTSRC := msr_main.o msr_lists.o msr_charbuf.o msr_reg.o msr_interpreter.o msr_utils.o msr_messages.o msr_functiongen.o msr_base64.o msr_watchdog.o msr_proc.o msr_error_reg.o
ifneq ($(KERNELRELEASE),) ifneq ($(KERNELRELEASE),)
# call from kernel build system
EXTRA_CFLAGS := -I$(RTLIB)/msr-include -D_SIMULATION -I/usr/include -mhard-float
#EXTRA_LDFLAGS := -L/usr/lib -lm
msr_modul-y := msr_module.o \
msr_jitter.o \
rt_lib/msr-core/msr_lists.o \
rt_lib/msr-core/msr_main.o \
rt_lib/msr-core/msr_charbuf.o \
rt_lib/msr-core/msr_reg.o \
rt_lib/msr-core/msr_interpreter.o \
rt_lib/msr-core/msr_messages.o \
rt_lib/msr-core/msr_proc.o \
rt_lib/msr-core/msr_error_reg.o \
rt_lib/msr-utils/msr_utils.o \
rt_lib/msr-math/msr_base64.o \
libm.o
#------------------------------------------------------------------------------
# Kbuild-Abschnitt
obj-m := msr_modul.o obj-m := msr_modul.o
msr_modul-objs := msr_module.o \
msr_jitter.o \
rt_lib/msr-core/msr_lists.o \
rt_lib/msr-core/msr_main.o \
rt_lib/msr-core/msr_charbuf.o \
rt_lib/msr-core/msr_reg.o \
rt_lib/msr-core/msr_interpreter.o \
rt_lib/msr-core/msr_messages.o \
rt_lib/msr-core/msr_proc.o \
rt_lib/msr-core/msr_error_reg.o \
rt_lib/msr-utils/msr_utils.o \
rt_lib/msr-math/msr_base64.o \
libm.o
EXTRA_CFLAGS := -I $(src)/rt_lib/msr-include -D_SIMULATION \
-I/usr/include -mhard-float
#------------------------------------------------------------------------------
else else
#------------------------------------------------------------------------------
KERNELDIR := /lib/modules/$(shell uname -r)/build # Default-Abschnitt
PWD := $(shell pwd)
default: default:
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules $(MAKE) -C ..
endif
clean: clean:
rm -f core .depend $(MAKE) -C .. clean
rm -rf .tmp_versions
find -L -maxdepth 3 -name "*.o" -exec rm {} \;
find -L -maxdepth 3 -name "*~" -exec rm {} \;
find -L -maxdepth 3 -name "*.cmd" -exec rm {} \;
find -L -maxdepth 3 -name "*.ko" -exec rm {} \;
find -L -maxdepth 3 -name "*.mod.c" -exec rm {} \;
depend .depend dep:
$(CC) $(CFLAGS) -M *.c > .depend
#------------------------------------------------------------------------------
ifeq (.depend,$(wildcard .depend))
include .depend
endif endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment