mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-02-01 05:23:03 +01:00
20 lines
348 B
Plaintext
20 lines
348 B
Plaintext
|
## $Revision: 1.1 $
|
||
|
##
|
||
|
## OS-9 makefile for editline library.
|
||
|
##
|
||
|
|
||
|
.SUFFIXES:
|
||
|
|
||
|
RFILES = editline.r complete.r sysos9.r
|
||
|
|
||
|
%.r: %.c
|
||
|
cc68 -r -Dstrchr=index -Dstrrchr=rindex -DNEED_STRDUP -DSYS_OS9 $*.c
|
||
|
|
||
|
testit: testit.r editline.lib
|
||
|
cc68 -f=testit testit.r -l=editline.lib
|
||
|
|
||
|
$(RFILES): $(RFILES:%.r=%.c)
|
||
|
|
||
|
editline.lib: $(RFILES)
|
||
|
cat $(RFILES) >$@
|