- add crc to build system

- add fir to build system


git-svn-id: http://moon:8086/svn/software/trunk/libsrc/crc@947 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2022-06-13 05:45:02 +00:00
parent f0745f8757
commit d182b4e664
2 changed files with 11 additions and 19 deletions
+5 -19
View File
@@ -1,23 +1,9 @@
include ../config.mk
include ./config.mk
SRCDIR := .
OBJS := crc.o
NAME := Crc
LIB := $(BUILD_DIR)/libcrc.a
GCC_SRCS := $(LIBSRC_PATH)/crc/crc.c
INCLUDES := . ..
DEFINES :=
all : $(LIB)
$(LIB) : $(OBJS)
$(AR) -r $(LIB) $(OBJS)
clean:
rm -f *.o
rm -f *.a
.PHONY: clean
include ../compile.mk
INCLUDES += -I $(LIBSRC_PATH)
include $(MAKE_HOME)/compile.mk