forked from Imagelibrary/rtems
2001-08-16 Joel Sherrill <joel@OARcorp.com>
* pppd/example/Makefile: Removed. * pppd/example/Makefile-user: Added was Makefile. Renamed to avoid bootstrap -c clobbering it.
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
2001-08-16 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* pppd/example/Makefile: Removed.
|
||||||
|
* pppd/example/Makefile-user: Added was Makefile. Renamed to
|
||||||
|
avoid bootstrap -c clobbering it.
|
||||||
|
|
||||||
2001-08-16 Mike Siers <mikes@poliac.com>
|
2001-08-16 Mike Siers <mikes@poliac.com>
|
||||||
|
|
||||||
* Update of PPPD to 2.3.11 from 2.3.5 and addition of an example
|
* Update of PPPD to 2.3.11 from 2.3.5 and addition of an example
|
||||||
|
|||||||
@@ -1,3 +1,9 @@
|
|||||||
|
2001-08-16 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* pppd/example/Makefile: Removed.
|
||||||
|
* pppd/example/Makefile-user: Added was Makefile. Renamed to
|
||||||
|
avoid bootstrap -c clobbering it.
|
||||||
|
|
||||||
2001-08-16 Mike Siers <mikes@poliac.com>
|
2001-08-16 Mike Siers <mikes@poliac.com>
|
||||||
|
|
||||||
* Update of PPPD to 2.3.11 from 2.3.5 and addition of an example
|
* Update of PPPD to 2.3.11 from 2.3.5 and addition of an example
|
||||||
|
|||||||
@@ -3,4 +3,6 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
This is an example user application using pppd. It is built using
|
This is an example user application using pppd. It is built using
|
||||||
the RTEMS application Makefiles.
|
the RTEMS application Makefiles. The file Makefile-user should
|
||||||
|
be renamed to Makefile or the -f option given to make. The file
|
||||||
|
is renamed to avoid bootstrap -c removing it.
|
||||||
|
|||||||
@@ -1,3 +1,9 @@
|
|||||||
|
2001-08-16 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* pppd/example/Makefile: Removed.
|
||||||
|
* pppd/example/Makefile-user: Added was Makefile. Renamed to
|
||||||
|
avoid bootstrap -c clobbering it.
|
||||||
|
|
||||||
2001-08-16 Mike Siers <mikes@poliac.com>
|
2001-08-16 Mike Siers <mikes@poliac.com>
|
||||||
|
|
||||||
* Update of PPPD to 2.3.11 from 2.3.5 and addition of an example
|
* Update of PPPD to 2.3.11 from 2.3.5 and addition of an example
|
||||||
|
|||||||
45
cpukit/pppd/example/Makefile-user
Normal file
45
cpukit/pppd/example/Makefile-user
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
#
|
||||||
|
# Makefile
|
||||||
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# RTEMS_MAKEFILE_PATH is typically set in an environment variable
|
||||||
|
#
|
||||||
|
|
||||||
|
EXEC=ppptest.exe
|
||||||
|
PGM=${ARCH}/$(EXEC)
|
||||||
|
|
||||||
|
# optional managers required
|
||||||
|
MANAGERS=io event semaphore
|
||||||
|
|
||||||
|
# C source names
|
||||||
|
CSRCS = init.c pppdapp.c
|
||||||
|
|
||||||
|
COBJS_ = $(CSRCS:.c=.o)
|
||||||
|
COBJS = $(COBJS_:%=${ARCH}/%)
|
||||||
|
|
||||||
|
# C++ source names
|
||||||
|
CXXSRCS =
|
||||||
|
CXXOBJS_ = $(CXXSRCS:.cc=.o)
|
||||||
|
CXXOBJS = $(CXXOBJS_:%=${ARCH}/%)
|
||||||
|
|
||||||
|
# AS source names
|
||||||
|
ASSRCS =
|
||||||
|
ASOBJS_ = $(ASSRCS:.s=.o)
|
||||||
|
ASOBJS = $(ASOBJS_:%=${ARCH}/%)
|
||||||
|
|
||||||
|
# Libraries
|
||||||
|
LIBS = -lrtemsall -lc
|
||||||
|
|
||||||
|
include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
|
||||||
|
|
||||||
|
include $(RTEMS_CUSTOM)
|
||||||
|
include $(PROJECT_ROOT)/make/leaf.cfg
|
||||||
|
|
||||||
|
OBJS= $(COBJS) $(CXXOBJS) $(ASOBJS)
|
||||||
|
|
||||||
|
all: ${ARCH} $(PGM)
|
||||||
|
|
||||||
|
$(PGM): $(OBJS)
|
||||||
|
$(make-exe)
|
||||||
|
|
||||||
@@ -3,4 +3,6 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
This is an example user application using pppd. It is built using
|
This is an example user application using pppd. It is built using
|
||||||
the RTEMS application Makefiles.
|
the RTEMS application Makefiles. The file Makefile-user should
|
||||||
|
be renamed to Makefile or the -f option given to make. The file
|
||||||
|
is renamed to avoid bootstrap -c removing it.
|
||||||
|
|||||||
Reference in New Issue
Block a user