Rework parameter parsing with ParameterOperation functions.

This commit is contained in:
2018-01-26 04:31:49 +01:00
parent 0a03410b65
commit 8e4ebad732
13 changed files with 343 additions and 153 deletions

View File

@@ -19,6 +19,7 @@ HEADS := \
src/util.h \
src/crc.h \
src/fileutil.h \
src/parameteroperation.h \
src/filenode.h \
src/actionfilenode.h \
src/actionfilenodesync.h \
@@ -28,6 +29,7 @@ OBJS_BASE := \
$(BUILDDIR)/util.o \
$(BUILDDIR)/crc.o \
$(BUILDDIR)/fileutil.o \
$(BUILDDIR)/parameteroperation.o \
$(BUILDDIR)/filenode.o \
$(BUILDDIR)/actionfilenode.o \
$(BUILDDIR)/actionfilenodesync.o \
@@ -73,6 +75,9 @@ $(BUILDDIR)/crc.o: src/crc.c $(HEADS)
$(BUILDDIR)/fileutil.o: src/fileutil.c $(HEADS)
$(DO_CC)
$(BUILDDIR)/parameteroperation.o: src/parameteroperation.c $(HEADS)
$(DO_CC)
$(BUILDDIR)/filenode.o: src/filenode.c $(HEADS)
$(DO_CC)