You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libtcap/asn1/Makefile.compiled

18 lines
250 B

.PHONY: all lib clean lib-clean
LIBNAME=libtcap-asn.a
CFLAGS=-g -Wall -O3
lib: $(LIBNAME)
include Makefile.am.sample
LIB_OBJS=${ASN_MODULE_SOURCES:.c=.o}
$(LIBNAME): $(LIB_OBJS)
ar cr $(LIBNAME) $(LIB_OBJS)
lib-clean: clean
rm -f $(LIBNAME)