aboutsummaryrefslogtreecommitdiff
path: root/src/makefile_win
diff options
context:
space:
mode:
Diffstat (limited to 'src/makefile_win')
-rw-r--r--src/makefile_win6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/makefile_win b/src/makefile_win
index 2d84b91..e65a76e 100644
--- a/src/makefile_win
+++ b/src/makefile_win
@@ -1,5 +1,5 @@
-all: iem_delay.dll
+all: ..\iem_delay.dll
VIS_CPP_PATH = "C:\Programme\Microsoft Visual Studio\Vc98"
@@ -33,9 +33,9 @@ OBJ = $(SRC:.c=.obj)
.c.obj:
cl $(PD_WIN_C_FLAGS) $(PD_WIN_INCLUDE_PATH) /c $*.c
-iem_delay.dll: $(OBJ)
+..\iem_delay.dll: $(OBJ)
link $(PD_WIN_L_FLAGS) /dll /export:iem_delay_setup \
- /out:iem_delay.dll $(OBJ) $(PD_WIN_LIB)
+ /out:..\iem_delay.dll $(OBJ) $(PD_WIN_LIB)
clean:
del *.obj