mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
16 lines
285 B
Makefile
16 lines
285 B
Makefile
MODULE := base/detection
|
|
|
|
DETECT_OBJS_DYNAMIC=$(addprefix ../../,$(DETECT_OBJS))
|
|
|
|
MODULE_OBJS := \
|
|
detection.o \
|
|
$(DETECT_OBJS_DYNAMIC)
|
|
|
|
# Reset detect objects, so none of them build into the executable.
|
|
DETECT_OBJS :=
|
|
|
|
PLUGIN := 1
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|