~pac72/ubuntu/lucid/ddd/devel

« back to all changes in this revision

Viewing changes to libiberty/config/mt-vxworks5

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Schepler
  • Date: 2004-07-22 03:49:37 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040722034937-cysl08t1jvba4jrx
Tags: 1:3.3.9-3
USERINFO has been renamed to USERINFO.txt; adjust debian/rules code
to match, to get correct information on the About DDD dialog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# VxWorks 5.x target Makefile fragment.
2
 
# The autoconfiguration fails for a VxWorks target, because the
3
 
# libraries are actually on the target board, not in the file system.
4
 
# Therefore, we compute the dependencies by hand.
5
 
 
6
 
HDEFINES = -DNO_SYS_PARAM_H -DNO_SYS_FILE_H
7
 
CONFIG_H = vxconfig.h
8
 
NEEDED_LIST = vxneeded-list
9
 
 
10
 
vxconfig.h: Makefile
11
 
        if [ -f ../newlib/Makefile ]; then \
12
 
          $(MAKE) $(FLAGS_TO_PASS) xconfig.h; \
13
 
          cp xconfig.h vxconfig.h; \
14
 
        else \
15
 
          echo "#define NEED_sys_nerr 1" >vxconfig.h; \
16
 
          echo "#define NEED_sys_errlist 1" >>vxconfig.h; \
17
 
          echo "#define NEED_sys_siglist 1" >>vxconfig.h; \
18
 
          echo "#define NEED_strsignal 1" >>vxconfig.h; \
19
 
          echo "#define NEED_psignal 1" >>vxconfig.h; \
20
 
        fi
21
 
 
22
 
vxneeded-list: Makefile
23
 
        if [ -f ../newlib/Makefile ]; then \
24
 
          $(MAKE) $(FLAGS_TO_PASS) xneeded-list; \
25
 
          cp xneeded-list vxneeded-list; \
26
 
        else \
27
 
          echo getopt.o getpagesize.o insque.o random.o strcasecmp.o strncasecmp.o strdup.o vfork.o waitpid.o vasprintf.o >vxneeded-list; \
28
 
        fi