aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAnders Betts <anders.betts@gmail.com>2026-09-21 09:09:39 +0200
committerAnders Betts <anders.betts@gmail.com>2026-09-21 09:09:39 +0200
commite692f0fbe16342195297048534ad1be227493107 (patch)
tree1537266f3f896f8259da20f5433965cfbcf1008c /Makefile
parent5ba2cfc29a0f8d3628a0fa7de2d04e4e39edf69a (diff)
downloadbokf-e692f0fbe16342195297048534ad1be227493107.tar.gz
bokf-e692f0fbe16342195297048534ad1be227493107.zip
payroll: employees, tax tables and the monthly run (schema v10)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8d9364e..738193a 100644
--- a/Makefile
+++ b/Makefile
@@ -25,8 +25,10 @@ CORE_SRC = src/util.c src/log.c src/config.c src/db.c src/auth.c \
src/cmd_customers.c src/cmd_invoices.c src/cmd_rules.c \
src/cmd_attachments.c src/cmd_reports.c src/cmd_sru.c \
src/cmd_sie.c src/cmd_bokslut.c src/cmd_bank.c \
+ src/cmd_employees.c src/cmd_payroll.c \
src/seed.c src/ledger.c src/reports.c src/sru.c src/sie.c \
- src/formula.c src/pdf.c src/invoice.c src/secret.c src/smtp.c
+ src/formula.c src/pdf.c src/invoice.c src/secret.c src/smtp.c \
+ src/tax_table.c
VENDOR_OBJ = $(patsubst %.c,$(BUILD)/%.o,$(VENDOR_SRC))
CORE_OBJ = $(patsubst %.c,$(BUILD)/%.o,$(CORE_SRC))