adding core/sysmetrics.[ch]

This commit is contained in:
2019-01-28 16:57:45 +01:00
parent 80b00561af
commit 65e9d58486
5 changed files with 70 additions and 29 deletions

View File

@@ -6,7 +6,7 @@
COPT = -Wall -fpic -g -DDEBUG_LEVEL=0
OBJS = lut1024f.o parseconf.o utils.o
OBJS = lut1024f.o parseconf.o utils.o sysmetrics.o
DEPS = Makefile
ALIB = libdd2m-core.a
# ---------------------------------------------------
@@ -15,13 +15,16 @@ ${ALIB}: ${OBJS}
ar r $@ $?
lut1024f.o: lut1024f.c lut1024.h ${DEPS}
gcc -Wall -c $<
gcc $(COPT) -c $<
parseconf.o: parseconf.c config.h ${DEPS}
gcc -Wall -c $<
gcc $(COPT) -c $<
utils.o: utils.c utils.h ${DEPS}
gcc -Wall -c $<
gcc $(COPT) -c $<
sysmetrics.o: sysmetrics.c ${DEPS}
gcc $(COPT) -c $<
# ---------------------------------------------------