Skip to content

Commit 73070d5

Browse files
authored
Reorg for proper fluxes -> pools (#154)
* Initial commit, all tests should pass * More reorg, tests should all still pass * Adds missing extern keywords; no idea how/why mac allowed this * PR feedback
1 parent b1c9940 commit 73070d5

File tree

14 files changed

+665
-660
lines changed

14 files changed

+665
-660
lines changed

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,5 @@ add_library(sipnetlib
3535
src/sipnet/outputItems.c
3636
src/sipnet/runmean.c
3737
src/sipnet/sipnet.c
38+
src/sipnet/state.c
3839
)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ COMMON_CFILES:=context.c logging.c modelParams.c util.c
1111
COMMON_CFILES:=$(addprefix src/common/, $(COMMON_CFILES))
1212
COMMON_OFILES=$(COMMON_CFILES:.c=.o)
1313

14-
SIPNET_CFILES:=sipnet.c frontend.c runmean.c outputItems.c events.c cli.c
14+
SIPNET_CFILES:=sipnet.c cli.c events.c frontend.c outputItems.c runmean.c state.c
1515
SIPNET_CFILES:=$(addprefix src/sipnet/, $(SIPNET_CFILES))
1616
SIPNET_OFILES=$(SIPNET_CFILES:.c=.o)
1717
SIPNET_LIBS=-lsipnet_common

0 commit comments

Comments
 (0)