13 lines
243 B
Makefile
13 lines
243 B
Makefile
ARTIFACT = libJabyEngine
|
|
BUILD_DIR = ../../lib
|
|
|
|
include ../../lib/Wildcard.mk
|
|
SRCS = $(call rwildcard, src, c cpp)
|
|
|
|
include ../../lib/Makefile
|
|
|
|
#Rules section for default compilation and linking
|
|
all: $(TARGET).a
|
|
|
|
clean:
|
|
rm -fr $(OUTPUT_DIR)
|