diff options
author | mescalinum <mescalinum@users.sourceforge.net> | 2011-10-02 22:19:07 +0000 |
---|---|---|
committer | mescalinum <mescalinum@users.sourceforge.net> | 2011-10-02 22:19:07 +0000 |
commit | 7fda5e60d285ec9034869d7d9ddeb5305ab3efb9 (patch) | |
tree | ecf8cc036e26d466e683efb9d1e92b39d0e877f0 | |
parent | d948c1a725f5773c5b15fbcc3f1b6114f6739db0 (diff) |
add dll symbol table for Windows/MINGW
svn path=/trunk/externals/loaders/tclpd/; revision=15462
-rw-r--r-- | Makefile | 2 | ||||
-rwxr-xr-x | tclpd.def | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -204,7 +204,7 @@ ifeq (MINGW,$(findstring MINGW,$(UNAME))) OPT_CFLAGS = -O3 -funroll-loops -fomit-frame-pointer CFLAGS += -mms-bitfields LDFLAGS += -s -shared -Wl,--enable-auto-import - LIBS += -L"$(PD_PATH)/src" -L"$(PD_PATH)/bin" -L"$(PD_PATH)/obj" -lpd -lwsock32 -lkernel32 -luser32 -lgdi32 $(LIBS_windows) + LIBS += -L"$(PD_PATH)/src" -L"$(PD_PATH)/bin" -L"$(PD_PATH)/obj" -lpd -lwsock32 -lkernel32 -luser32 -lgdi32 $(LIBS_windows) "$(LIBRARY_NAME).def" STRIP = strip --strip-unneeded -R .note -R .comment DISTBINDIR=$(DISTDIR)-$(OS) endif diff --git a/tclpd.def b/tclpd.def new file mode 100755 index 0000000..73df818 --- /dev/null +++ b/tclpd.def @@ -0,0 +1,4 @@ +LIBRARY "tclpd.dll" + +EXPORTS +tclpd_setup |