Changeset 9af31a6 in rtems


Ignore:
Timestamp:
11/09/99 02:32:37 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
78facc4
Parents:
bb11d7e
Message:

Moved include files to hppa1.1 subdirectory and put their sources
in the include directory.

Location:
c/src/lib/libcpu/hppa1.1
Files:
1 added
4 edited
1 moved

Legend:

Unmodified
Added
Removed
  • c/src/lib/libcpu/hppa1.1/Makefile.in

    rbb11d7e r9af31a6  
    1919INSTALL_CHANGE = @INSTALL_CHANGE@
    2020
    21 SUB_DIRS = include milli runway clock timer semaphore
     21SUB_DIRS = include milli clock timer semaphore
    2222
    2323Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • c/src/lib/libcpu/hppa1.1/include/Makefile.in

    rbb11d7e r9af31a6  
    11#
    2 #  $Id$
     2# $Id$
    33#
    44
     
    1414VPATH = @srcdir@
    1515
     16H_FILES = $(srcdir)/runway.h $(srcdir)/semaphore.h
     17
     18SRCS = $(H_FILES)
     19
    1620include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
    1721include $(RTEMS_ROOT)/make/leaf.cfg
    1822
    1923INSTALL_CHANGE = @INSTALL_CHANGE@
     24mkinstalldirs = $(SHELL) $(top_srcdir)/@RTEMS_TOPdir@/mkinstalldirs
    2025
    21 all: FORCEIT
    22         cd ../../../libbsp/$(RTEMS_CPU)/@RTEMS_BSP@/include; $(MAKE) all
     26INSTALLDIRS = $(PROJECT_INCLUDE)/hppa1.1
     27
     28$(INSTALLDIRS):
     29        @$(mkinstalldirs) $(INSTALLDIRS)
     30
     31CLEAN_ADDITIONS +=
     32CLOBBER_ADDITIONS +=
     33
     34all: install
     35
     36# NOTE: Unlike other CPUS, we install into a subdirectory to avoid
     37#       file name conflicts
     38
     39install:
     40        $(mkinstalldirs) $(PROJECT_INCLUDE)/hppa1.1
     41        @$(INSTALL_CHANGE) -m 644 $(H_FILES) $(PROJECT_INCLUDE)/hppa1.1
    2342
    2443Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • c/src/lib/libcpu/hppa1.1/include/semaphore.h

    rbb11d7e r9af31a6  
    1515 */
    1616
    17 #ifndef _INCLUDE_SEMAPHORE_H
    18 #define _INCLUDE_SEMAPHORE_H
     17#ifndef _INCLUDE_HPPA1_1_SEMAPHORE_H
     18#define _INCLUDE_HPPA1_1_SEMAPHORE_H
    1919
    2020#ifdef __cplusplus
  • c/src/lib/libcpu/hppa1.1/semaphore/Makefile.in

    rbb11d7e r9af31a6  
    2121C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
    2222
    23 H_PIECES = semaphore
     23H_PIECES =
    2424H_FILES = $(H_PIECES:%=$(srcdir)/%.h)
    2525
     
    3838mkinstalldirs = $(SHELL) $(top_srcdir)/@RTEMS_TOPdir@/mkinstalldirs
    3939
    40 INSTALLDIRS = $(PROJECT_INCLUDE)
     40INSTALLDIRS = $(PROJECT_INCLUDE)/hppa1.1
    4141
    4242$(INSTALLDIRS):
     
    6464
    6565all: ${ARCH} $(SRCS) $(PGM)
    66         @$(INSTALL_CHANGE) -m 644 $(H_FILES) $(PROJECT_INCLUDE)
    6766
    6867Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • c/src/lib/libcpu/hppa1.1/semaphore/semaphore.c

    rbb11d7e r9af31a6  
    1919#include <rtems.h>
    2020
    21 #include "semaphore.h"
     21#include <hppa1.1/semaphore.h>
    2222
    2323/*
Note: See TracChangeset for help on using the changeset viewer.