source: rtems/testsuites/samples/pppd/Makefile-user @ 478bb1e6

4.104.114.84.95
Last change on this file since 478bb1e6 was 478bb1e6, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/29/03 at 02:04:26

2003-04-29 Ralf Corsepius <corsepiu@…>

Adding pppd:

  • pppd/Makefile-user: New, copied over from libnetworking/pppd/example.
  • pppd/README: New, copied over from libnetworking/pppd/example.
  • pppd/init.c: New, copied over from libnetworking/pppd/example.
  • pppd/netconfig.h: New, copied over from libnetworking/pppd/example.
  • pppd/ppp.conf: New, copied over from libnetworking/pppd/example.
  • pppd/pppdapp.c: New, copied over from libnetworking/pppd/example.
  • pppd/system.h: New, copied over from libnetworking/pppd/example.
  • pppd/pppd.options: New, copied over from libnetworking/pppd/example.
  • pppd/Makefile.am: New, converted to automake from Makefile-user.
  • pppd/.cvsignore: New.
  • Property mode set to 100644
File size: 696 bytes
RevLine 
[478bb1e6]1#
2#  Makefile
3#
4
5#
6#  RTEMS_MAKEFILE_PATH is typically set in an environment variable
7#
8
9EXEC=ppptest.exe
10PGM=${ARCH}/$(EXEC)
11
12# optional managers required
13MANAGERS=io event semaphore
14
15# C source names
16CSRCS = init.c pppdapp.c
17
18COBJS_ = $(CSRCS:.c=.o)
19COBJS = $(COBJS_:%=${ARCH}/%)
20
21# C++ source names
22CXXSRCS =
23CXXOBJS_ = $(CXXSRCS:.cc=.o)
24CXXOBJS = $(CXXOBJS_:%=${ARCH}/%)
25
26# AS source names
27ASSRCS =
28ASOBJS_ = $(ASSRCS:.s=.o)
29ASOBJS = $(ASOBJS_:%=${ARCH}/%)
30
31# Libraries
32LIBS = -lrtemsall -lc
33
34include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
35
36include $(RTEMS_CUSTOM)
37include $(PROJECT_ROOT)/make/leaf.cfg
38
39OBJS= $(COBJS) $(CXXOBJS) $(ASOBJS)
40
41all:    ${ARCH} $(PGM)
42
43$(PGM): $(OBJS)
44        $(make-exe)
45
Note: See TracBrowser for help on using the repository browser.