source: rtems/c/src/exec/score/include/rtems/score/Makefile.in @ e2d79559

4.104.114.84.95
Last change on this file since e2d79559 was e2d79559, checked in by Joel Sherrill <joel.sherrill@…>, on 04/09/97 at 14:05:50

Added ka9q tcpip stack and network driver for the gen68360. This effort
was done based on the 3.6.0 release and had to be autoconf'ed locally.
It is turned on is the bsp enables it and it is not explicitly disabled
via the configure option --disable-tcpip. As many warnings as possible
were removed locally after the code was merged. Only the gen68360
and mvme136 bsps were compiled this way.

The ka9q port and network driver were submitted by Eric Norum
(eric@…).

The network demo programs are not included in the tree at this point.

  • Property mode set to 100644
File size: 1.4 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8VPATH=@srcdir@
9
10# H_FILES that get installed in the rtems/score subdirectoy
11H_PIECES= address apiext bitfield chain context copyrt coremsg coremutex \
12    coresem heap interr isr mpci mppkt object objectmp \
13    priority stack states sysstate thread threadmp threadq \
14    tod tqdata userext watchdog wkspace
15H_FILES=$(H_PIECES:%=$(srcdir)/%.h)
16
17# H_FILES that get installed in the rtems subdirectoy
18SAPI_H_PIECES=debug system
19SAPI_H_FILES=$(SAPI_H_PIECES:%=$(srcdir)/%.h)
20
21# H_FILES that get installed at the top level
22EXTERNAL_H_PIECES =
23EXTERNAL_H_FILES=$(EXTERNAL_H_PIECES:%=$(srcdir)/%.h)
24
25NET_H_PIECES = in
26NET_H_FILES=$(NET_H_PIECES:%=$(srcdir)/%.h)
27
28SRCS=$(H_FILES) $(SAPI_H_FILES) $(EXTERNAL_H_FILES)
29
30include $(RTEMS_CUSTOM)
31include $(PROJECT_ROOT)/make/leaf.cfg
32
33#
34# Add your list of files to delete here.  The config files
35#  already know how to delete some stuff, so you may want
36#  to just run 'make clean' first to see what gets missed.
37#  'make clobber' already includes 'make clean'
38#
39
40CLEAN_ADDITIONS +=
41CLOBBER_ADDITIONS +=
42
43all:    $(SRCS)
44        $(INSTALL) -m 444 ${H_FILES} ${PROJECT_RELEASE}/include/rtems/score
45        $(INSTALL) -m 444 ${SAPI_H_FILES} ${PROJECT_RELEASE}/include/rtems/
46        $(INSTALL) -m 444 ${NET_H_FILES} ${PROJECT_RELEASE}/include/netinet
47#       $(INSTALL) -m 444 ${EXTERNAL_H_FILES} ${PROJECT_RELEASE}/include
Note: See TracBrowser for help on using the repository browser.