diff options
author | midipix <writeonce@midipix.org> | 2016-11-14 18:28:21 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-14 18:28:21 -0500 |
commit | ed433b6affab2e3274bc336e8e4c6a31240e7fbc (patch) | |
tree | 2dbacc1885671e1c860c739023dd316c84685545 | |
parent | 7f3a33ff74fc9b3e040dd1975e835d5354085e7f (diff) | |
download | sofort-ed433b6affab2e3274bc336e8e4c6a31240e7fbc.tar.bz2 sofort-ed433b6affab2e3274bc336e8e4c6a31240e7fbc.tar.xz |
project: common.mk: code maintenance.
-rw-r--r-- | project/common.mk | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/project/common.mk b/project/common.mk index 32cbf84..a46a3b0 100644 --- a/project/common.mk +++ b/project/common.mk @@ -1,8 +1,7 @@ -COMMON_SRCS = \ +API_SRCS = \ src/driver/sfrt_amain.c \ src/driver/sfrt_driver_ctx.c \ src/driver/sfrt_unit_ctx.c \ - src/internal/sofort_errinfo_impl.c \ src/logic/sfrt_map_input.c \ src/output/sfrt_output_address.c \ src/output/sfrt_output_dummy.c \ @@ -10,5 +9,10 @@ COMMON_SRCS = \ src/output/sfrt_output_name.c \ src/skin/sfrt_skin_default.c \ +INTERNAL_SRCS = \ + src/internal/$(PACKAGE)_errinfo_impl.c \ + APP_SRCS = \ src/sofort.c + +COMMON_SRCS = $(API_SRCS) $(INTERNAL_SRCS) |