- Added pmacterm, a new application which implements a terminal to a

Delta Tau motor controller
This commit is contained in:
koennecke
2009-04-17 12:55:00 +00:00
parent 28bee49727
commit 5d30c7b5b9
2 changed files with 166 additions and 0 deletions

13
utils/Make.pmacterm Normal file
View File

@ -0,0 +1,13 @@
.SUFFIXES:
.SUFFIXES: .c .o
OBJ=asynnet.o rwpuffer.o pmacterm.o
.c.o:
$(CC) -c -g $*.c
all:pmacterm
pmacterm: $(OBJ)
$(CC) -g -o pmacterm $(OBJ)