Import ncpfs 2.0.7

This commit is contained in:
ncpfs archive import
2026-04-28 20:39:58 +02:00
parent 134b5d6ebf
commit c4d2144d0d
54 changed files with 3169 additions and 437 deletions

28
lib/com_err/Makefile Normal file
View File

@@ -0,0 +1,28 @@
#
# Makefile for the com_err library
#
OBJECTS = com_err.o error_message.o et_name.o init_et.o
CFLAGS = -Wall -O2 $(PIC_FLAG)
all: ../libcom_err.a
../libcom_err.a: $(OBJECTS)
ar r ../libcom_err.a $(OBJECTS)
dep:
$(CPP) -M $(INCLUDES) *.c > .depend
clean:
rm -f *.o ../libcom_err.a
mrproper: clean
rm -f .depend
#
# include a dependency file if one exists
#
ifeq (.depend,$(wildcard .depend))
include .depend
endif