mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
posix: move posix semaphore in posix module
This commit is contained in:
parent
3c54edf4d6
commit
60feb7ea37
72
Makefile.dep
72
Makefile.dep
@ -16,6 +16,42 @@ ifneq (,$(filter pnet,$(USEMODULE)))
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq (,$(filter destiny,$(USEMODULE)))
|
||||
ifeq (,$(filter sixlowpan,$(USEMODULE)))
|
||||
USEMODULE += sixlowpan
|
||||
endif
|
||||
ifeq (,$(filter net_help,$(USEMODULE)))
|
||||
USEMODULE += net_help
|
||||
endif
|
||||
ifeq (,$(filter vtimer,$(USEMODULE)))
|
||||
USEMODULE += vtimer
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq (,$(filter sixlowborder,$(USEMODULE)))
|
||||
ifeq (,$(filter sixlowpan,$(USEMODULE)))
|
||||
USEMODULE += sixlowpan
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq (,$(filter sixlowpan,$(USEMODULE)))
|
||||
ifeq (,$(filter ieee802154,$(USEMODULE)))
|
||||
USEMODULE += ieee802154
|
||||
endif
|
||||
ifeq (,$(filter net_help,$(USEMODULE)))
|
||||
USEMODULE += net_help
|
||||
endif
|
||||
ifeq (,$(filter net_if,$(USEMODULE)))
|
||||
USEMODULE += net_if
|
||||
endif
|
||||
ifeq (,$(filter posix, $(USEMODULE)))
|
||||
USEMODULE += posix
|
||||
endif
|
||||
ifeq (,$(filter vtimer, $(USEMODULE)))
|
||||
USEMODULE += vtimer
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq (,$(filter posix,$(USEMODULE)))
|
||||
ifeq (,$(filter uart0,$(USEMODULE)))
|
||||
USEMODULE += uart0
|
||||
@ -73,42 +109,6 @@ ifneq (,$(filter at86rf231,$(USEMODULE)))
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq (,$(filter destiny,$(USEMODULE)))
|
||||
ifeq (,$(filter sixlowpan,$(USEMODULE)))
|
||||
USEMODULE += sixlowpan
|
||||
endif
|
||||
ifeq (,$(filter net_help,$(USEMODULE)))
|
||||
USEMODULE += net_help
|
||||
endif
|
||||
ifeq (,$(filter vtimer,$(USEMODULE)))
|
||||
USEMODULE += vtimer
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq (,$(filter sixlowborder,$(USEMODULE)))
|
||||
ifeq (,$(filter sixlowpan,$(USEMODULE)))
|
||||
USEMODULE += sixlowpan
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq (,$(filter sixlowpan,$(USEMODULE)))
|
||||
ifeq (,$(filter ieee802154,$(USEMODULE)))
|
||||
USEMODULE += ieee802154
|
||||
endif
|
||||
ifeq (,$(filter net_help,$(USEMODULE)))
|
||||
USEMODULE += net_help
|
||||
endif
|
||||
ifeq (,$(filter net_if,$(USEMODULE)))
|
||||
USEMODULE += net_if
|
||||
endif
|
||||
ifeq (,$(filter semaphore, $(USEMODULE)))
|
||||
USEMODULE += semaphore
|
||||
endif
|
||||
ifeq (,$(filter vtimer, $(USEMODULE)))
|
||||
USEMODULE += vtimer
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq (,$(filter vtimer,$(USEMODULE)))
|
||||
ifeq (,$(filter timex,$(USEMODULE)))
|
||||
USEMODULE += timex
|
||||
|
@ -93,9 +93,6 @@ endif
|
||||
ifneq (,$(filter hashes,$(USEMODULE)))
|
||||
DIRS += hashes
|
||||
endif
|
||||
ifneq (,$(filter semaphore,$(USEMODULE)))
|
||||
DIRS += semaphore
|
||||
endif
|
||||
ifneq (,$(filter ccn_lite,$(USEMODULE)))
|
||||
DIRS += net/ccn_lite
|
||||
endif
|
||||
|
@ -1,3 +0,0 @@
|
||||
MODULE = semaphore
|
||||
|
||||
include $(RIOTBASE)/Makefile.base
|
Loading…
Reference in New Issue
Block a user