summaryrefslogtreecommitdiffstats
path: root/cpukit/pppd/example/Makefile-user
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/pppd/example/Makefile-user')
-rw-r--r--cpukit/pppd/example/Makefile-user45
1 files changed, 0 insertions, 45 deletions
diff --git a/cpukit/pppd/example/Makefile-user b/cpukit/pppd/example/Makefile-user
deleted file mode 100644
index 69cc8aab50..0000000000
--- a/cpukit/pppd/example/Makefile-user
+++ /dev/null
@@ -1,45 +0,0 @@
-#
-# 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)
-