8 lines
185 B
Makefile
8 lines
185 B
Makefile
|
|
# this makefile creates the output directories for object/library files
|
|
# when the makefile is parsed.
|
|
|
|
ifeq ($(wildcard $(OBJDIR)/.),)
|
|
$(shell mkdir -p 2>/dev/null $(OBJDIR))
|
|
endif
|