From ea5470e0a34f7154531b857413b39b25588193e8 Mon Sep 17 00:00:00 2001 From: midipix Date: Sat, 18 Nov 2017 03:27:43 +0000 Subject: created skeleton. --- project/arch.mk | 0 project/common.mk | 7 +++++++ project/depends.mk | 0 project/extras.mk | 6 ++++++ project/headers.mk | 7 +++++++ project/osforce.mk | 0 project/overrides.mk | 0 project/tagver.mk | 5 +++++ project/tree.mk | 2 ++ 9 files changed, 27 insertions(+) create mode 100644 project/arch.mk create mode 100644 project/common.mk create mode 100644 project/depends.mk create mode 100644 project/extras.mk create mode 100644 project/headers.mk create mode 100644 project/osforce.mk create mode 100644 project/overrides.mk create mode 100644 project/tagver.mk create mode 100644 project/tree.mk (limited to 'project') diff --git a/project/arch.mk b/project/arch.mk new file mode 100644 index 0000000..e69de29 diff --git a/project/common.mk b/project/common.mk new file mode 100644 index 0000000..4b72987 --- /dev/null +++ b/project/common.mk @@ -0,0 +1,7 @@ +API_SRCS = \ + +INTERNAL_SRCS = \ + +APP_SRCS = \ + +COMMON_SRCS = $(API_SRCS) $(INTERNAL_SRCS) diff --git a/project/depends.mk b/project/depends.mk new file mode 100644 index 0000000..e69de29 diff --git a/project/extras.mk b/project/extras.mk new file mode 100644 index 0000000..fa9ef79 --- /dev/null +++ b/project/extras.mk @@ -0,0 +1,6 @@ +CFLAGS_SHARED_ATTR += -DWLIB_PRE_ALPHA -DWLIB_EXPORT +CFLAGS_STATIC_ATTR += -DWLIB_PRE_ALPHA -DWLIB_STATIC +CFLAGS_APP_ATTR += -DWLIB_APP + +src/driver/wlib_driver_ctx.o: version.tag +src/driver/wlib_driver_ctx.lo: version.tag diff --git a/project/headers.mk b/project/headers.mk new file mode 100644 index 0000000..4529b68 --- /dev/null +++ b/project/headers.mk @@ -0,0 +1,7 @@ +API_HEADERS = \ + $(PROJECT_DIR)/include/$(PACKAGE)/w32lib.h \ + $(PROJECT_DIR)/include/$(PACKAGE)/w32lib_api.h \ + +INTERNAL_HEADERS = \ + +ALL_HEADERS = $(API_HEADERS) $(INTERNAL_HEADERS) diff --git a/project/osforce.mk b/project/osforce.mk new file mode 100644 index 0000000..e69de29 diff --git a/project/overrides.mk b/project/overrides.mk new file mode 100644 index 0000000..e69de29 diff --git a/project/tagver.mk b/project/tagver.mk new file mode 100644 index 0000000..1696919 --- /dev/null +++ b/project/tagver.mk @@ -0,0 +1,5 @@ +VER_NAMESPACE = WLIB + +VER_MAJOR = 0 +VER_MINOR = 0 +VER_PATCH = 0 diff --git a/project/tree.mk b/project/tree.mk new file mode 100644 index 0000000..52f79f7 --- /dev/null +++ b/project/tree.mk @@ -0,0 +1,2 @@ +tree.tag: + touch tree.tag -- cgit v1.2.3