23 lines
526 B
Makefile
23 lines
526 B
Makefile
#### Makefile for DSO's. Any fields commented out are optional.
|
|
|
|
#### Target's name:
|
|
#CTTARGET
|
|
|
|
#CTINCLUDE $DTOOL/lib/Makefile.o.include
|
|
|
|
#### Pull in standard binary make variables.
|
|
include $(DTOOL)/include/Makefile.bin.vars
|
|
|
|
#### Other files and lib. Include $(ODIR) in any .o names.
|
|
# OFILES =
|
|
# LIBS =
|
|
|
|
#### Additional search directories for lib:
|
|
# LPATH := $(LPATH) -L/my/directory -L/my/other/directory
|
|
|
|
#### Other linker flags.
|
|
# LDFLAGS =
|
|
|
|
#### The .so action is here.
|
|
include $(DTOOL)/include/Makefile.so.rules
|