File: Makefile

package info (click to toggle)
ptlib 2.10.4~dfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 58,836 kB
  • sloc: cpp: 135,080; ansic: 8,534; yacc: 3,059; sh: 2,776; makefile: 1,082; lex: 390
file content (20 lines) | stat: -rw-r--r-- 384 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Simple makefile for the serial example program.
#
# copyright 2005 Derek J Smithies
#
# $Log: Makefile,v $
# Revision 1.1  2005/03/10 09:21:46  dereksmithies
# Initial release of a program to illustrate the operation of the serial port.
#
#
#
PROG    = serial
SOURCES = serial.cxx

ifndef PTLIBDIR
PTLIBDIR=$(HOME)/ptlib
endif

include $(PTLIBDIR)/make/ptlib.mak

# End of Makefile