Renamed def file so that vamos doesn't try to load it as a DLL.

This commit is contained in:
Jaakko Haakana 2012-11-05 11:08:44 +02:00
parent 8bc7a5284c
commit 3c3b7fb9d5
3 changed files with 5 additions and 2 deletions

3
.gitignore vendored
View File

@ -5,3 +5,6 @@ Debug/
ipch/
*.sdf
*.suo
*.exe
*.exp
*.lib

View File

@ -28,8 +28,8 @@ all: build
build: $(LIB_FILE)
$(LIB_FILE): $(ALL_OBJ) musashi.def
$(CC) $(ALL_OBJ) musashi.def /Femusashi.dll /link /dll
$(LIB_FILE): $(ALL_OBJ) musashi_dll.def
$(CC) $(ALL_OBJ) musashi_dll.def /Femusashi.dll /link /dll
#$(SRC): $(GEN_HDR) $(HDR)