mirror of
https://github.com/UzixLS/picocom.git
synced 2025-07-19 07:21:18 +03:00
Imported 1.4 source
This commit is contained in:
44
Makefile
Normal file
44
Makefile
Normal file
@ -0,0 +1,44 @@
|
||||
|
||||
VERSION=1.4
|
||||
|
||||
# CC = gcc
|
||||
CPPFLAGS=-DVERSION_STR=\"$(VERSION)\" -DUUCP_LOCK_DIR=\"/var/lock\"
|
||||
CFLAGS = -Wall -g
|
||||
|
||||
# LD = gcc
|
||||
LDFLAGS = -g
|
||||
LDLIBS =
|
||||
|
||||
picocom : picocom.o term.o
|
||||
# $(LD) $(LDFLAGS) -o $@ $+ $(LDLIBS)
|
||||
|
||||
picocom.o : picocom.c term.h
|
||||
term.o : term.c term.h
|
||||
|
||||
doc : picocom.8 picocom.8.html picocom.8.ps
|
||||
|
||||
changes :
|
||||
svn log -v . > CHANGES
|
||||
|
||||
picocom.8 : picocom.8.xml
|
||||
xmlmp2man < $< > $@
|
||||
|
||||
picocom.8.html : picocom.8.xml
|
||||
xmlmp2html < $< > $@
|
||||
|
||||
picocom.8.ps : picocom.8
|
||||
groff -mandoc -Tps $< > $@
|
||||
|
||||
clean:
|
||||
rm -f picocom.o term.o
|
||||
rm -f *~
|
||||
rm -f \#*\#
|
||||
|
||||
distclean: clean
|
||||
rm -f picocom
|
||||
|
||||
realclean: distclean
|
||||
rm -f picocom.8
|
||||
rm -f picocom.8.html
|
||||
rm -f picocom.8.ps
|
||||
rm -f CHANGES
|
Reference in New Issue
Block a user