discuss-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

DLL Generation for Bundle, Framework...


From: S.J.Chun
Subject: DLL Generation for Bundle, Framework...
Date: Fri, 7 May 2004 19:28:37 +0900 (KST)

Hi,
for crrect generation of dll, I have to use following "dirty" makefile fix:

$(BUNDLE_FILE) : $(OBJ_FILES_TO_LINK)
        $(RM) -r .DLL; \
        $(MKDIRS) .DLL; \
        $(AR) ru DLL.archive $(OBJ_FILES_TO_LINK); \
        mv DLL.archive .DLL; \
        (cd .DLL; ar x DLL.archive; $(RM) -f DLL.archive; \
         $(DLLWRAP) --export-all -o $(PWD)/$(BUNDLE_FILE) *.o $(ALL_LDFLAGS) 
$(ALL_BUNDLE_LIBS)); \
        $(RM) -r .DLL

This is because dllwrap ... shared_obj/*.o and dllwrap .. *.o makes difference 
dll (latter is correct one). I want
to make shared_obj/*.o to *.o for this. Is there any makefile variable for 
this? Or what is cleaner way of doing
this ?

Thanks in advance.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]