2009-08-10 Joel Sherrill <joel.sherrill@OARcorp.com>

* Makefile.am, preinstall.am, fb/fb.c: Install nds specific .h files
	into nds subdirectory.
This commit is contained in:
Joel Sherrill
2009-08-10 14:05:43 +00:00
parent efc6c73345
commit 49f60a3801
4 changed files with 21 additions and 15 deletions

View File

@@ -1,3 +1,8 @@
2009-08-10 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.am, preinstall.am, fb/fb.c: Install nds specific .h files
into nds subdirectory.
2009-08-03 Roxana Leontie <roxana.leontie@gmail.com>
* fb/fb.c: changed the references to mw_fb.h into fb.h

View File

@@ -31,8 +31,8 @@ dist_project_lib_DATA += startup/linkcmds
noinst_LIBRARIES += libbsp.a
libbsp_a_SOURCES =
include_rtemsdir = $(includedir)/rtems
include_rtems_HEADERS = fb/fb.h touchscreen/touchscreen.h sound/sound.h
include_ndsdir = $(includedir)/nds
include_nds_HEADERS = fb/fb.h touchscreen/touchscreen.h sound/sound.h
noinst_PROGRAMS += startup.rel
startup_rel_SOURCES = ../../shared/bsplibc.c ../../shared/bsppost.c \

View File

@@ -22,6 +22,7 @@
#include <nds.h>
#include <rtems/fb.h>
#include <nds/fb.h>
/*
* screen information for the driver (fb0).

View File

@@ -65,22 +65,22 @@ $(PROJECT_LIB)/linkcmds: startup/linkcmds $(PROJECT_LIB)/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_LIB)/linkcmds
PREINSTALL_FILES += $(PROJECT_LIB)/linkcmds
$(PROJECT_INCLUDE)/rtems/$(dirstamp):
@$(MKDIR_P) $(PROJECT_INCLUDE)/rtems
@: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)
PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/$(dirstamp)
$(PROJECT_INCLUDE)/nds/$(dirstamp):
@$(MKDIR_P) $(PROJECT_INCLUDE)/nds
@: > $(PROJECT_INCLUDE)/nds/$(dirstamp)
PREINSTALL_DIRS += $(PROJECT_INCLUDE)/nds/$(dirstamp)
$(PROJECT_INCLUDE)/rtems/fb.h: fb/fb.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/fb.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/fb.h
$(PROJECT_INCLUDE)/nds/fb.h: fb/fb.h $(PROJECT_INCLUDE)/nds/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/nds/fb.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/nds/fb.h
$(PROJECT_INCLUDE)/rtems/touchscreen.h: touchscreen/touchscreen.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/touchscreen.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/touchscreen.h
$(PROJECT_INCLUDE)/nds/touchscreen.h: touchscreen/touchscreen.h $(PROJECT_INCLUDE)/nds/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/nds/touchscreen.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/nds/touchscreen.h
$(PROJECT_INCLUDE)/rtems/sound.h: sound/sound.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/sound.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/sound.h
$(PROJECT_INCLUDE)/nds/sound.h: sound/sound.h $(PROJECT_INCLUDE)/nds/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/nds/sound.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/nds/sound.h
$(PROJECT_INCLUDE)/irq.h: irq/irq.h $(PROJECT_INCLUDE)/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/irq.h