You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
191 B
11 lines
191 B
7 months ago
|
CXX_SOURCES := main.cpp
|
||
|
USE_LIBDL := 1
|
||
|
|
||
|
a.out: lib_shared
|
||
|
|
||
|
lib_shared:
|
||
|
$(MAKE) -f $(MAKEFILE_RULES) \
|
||
|
DYLIB_ONLY=YES DYLIB_CXX_SOURCES=shared.cpp DYLIB_NAME=shared
|
||
|
|
||
|
include Makefile.rules
|