Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/big-int/makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
SRC = bigint-func.cc bigint.cc

include ../config.inc
include ../common

SRC = bigint-func.cc bigint.cc
CLEANFILES = big-int$(LIBEXT)

all: big-int$(LIBEXT)
Expand Down
3 changes: 2 additions & 1 deletion src/common
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ sources: Makefile
# endif

D_FILES1 = $(SRC:.c=$(DEPEXT))
D_FILES = $(D_FILES1:.cpp=$(DEPEXT))
D_FILES2 = $(D_FILES1:.cc=$(DEPEXT))
D_FILES = $(D_FILES2:.cpp=$(DEPEXT))

-include $(D_FILES)
Loading