summaryrefslogtreecommitdiff
path: root/src/NMakefile
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2014-09-16 18:24:29 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2014-09-16 18:24:29 +0200
commit0e6fe4f1cabbcfc85e790552ae02ab78a7c1be2d (patch)
treecbbcc48b10d5edcf7ade1a516cab5fe0f74272fe /src/NMakefile
parent44353ca8aeaff369669f5108a6cadda895842673 (diff)
downloadbiruda-0e6fe4f1cabbcfc85e790552ae02ab78a7c1be2d.tar.gz
biruda-0e6fe4f1cabbcfc85e790552ae02ab78a7c1be2d.tar.bz2
added detection of cpus
Diffstat (limited to 'src/NMakefile')
-rw-r--r--src/NMakefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/NMakefile b/src/NMakefile
index 73c30ea..67a06b5 100644
--- a/src/NMakefile
+++ b/src/NMakefile
@@ -38,14 +38,15 @@ LIBS = libConfuse.lib pthreadVC2d.lib nanomsg.lib json-c.lib Ws2_32.lib
all: biruda.exe
-biruda.exe: biruda.obj biruda_cmdline.obj master.obj coordinator.obj worker.obj
+biruda.exe: biruda.obj biruda_cmdline.obj master.obj coordinator.obj worker.obj system.obj
$(LINK) $(LINKFLAGS) $(LIBS) /out:$@ $**
biruda_cmdline.obj: biruda_cmdline.c
-biruda.obj: biruda.c biruda_cmdline.h master.h coordinator.h worker.h sleep.h
+biruda.obj: biruda.c biruda_cmdline.h master.h coordinator.h worker.h sleep.h system.h
master.obj: master.c master.h sleep.h
coordinator.obj: coordinator.c coordinator.h sleep.h
worker.obj: worker.c worker.h
+system.obj: system.c system.h
biruda_cmdline.c: biruda.ggo
$(GENGETOPT) -F biruda_cmdline --unamed-opts --conf-parser --include-getopt -i $**