mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-02-01 02:43:02 +01:00
f35570a03b
Started work on upgrading rpm build scripts Fix makefiles for super build Exchange editline for readline in isql
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) >$@
|