diff options
author | musil <tmusil@users.sourceforge.net> | 2007-10-24 15:52:05 +0000 |
---|---|---|
committer | musil <tmusil@users.sourceforge.net> | 2007-10-24 15:52:05 +0000 |
commit | 2f146dfb942fb1cc551e73c18475f26289c69c67 (patch) | |
tree | 8df2ed62cd303f8f9dc19e6e613de98d71d45424 /iem_t3_lib | |
parent | 53a4f1cbfa1f823bda469b20250d2e0e76eedb2c (diff) |
$(TARGET)
svn path=/trunk/externals/iemlib/; revision=8872
Diffstat (limited to 'iem_t3_lib')
-rw-r--r-- | iem_t3_lib/src/makefile_win | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/iem_t3_lib/src/makefile_win b/iem_t3_lib/src/makefile_win index f8856d9..213b9e7 100644 --- a/iem_t3_lib/src/makefile_win +++ b/iem_t3_lib/src/makefile_win @@ -1,7 +1,9 @@ -all: ..\iem_t3_lib.dll +TARGET = iem_t3_lib + +all: ..\$(TARGET).dll VIS_CPP_PATH = "C:\Programme\Microsoft Visual Studio\Vc98" -PD_INST_PATH = "C:\Programme\pd-0.39-2" +PD_INST_PATH = "C:\Programme\pd" PD_WIN_INCLUDE_PATH = /I. /I$(PD_INST_PATH)\src /I$(VIS_CPP_PATH)\include PD_WIN_C_FLAGS = /nologo /W3 /WX /DMSW /DNT /DPD /DWIN32 /DWINDOWS /Ox -DPA_LITTLE_ENDIAN PD_WIN_L_FLAGS = /nologo @@ -21,16 +23,16 @@ SRC = t3_bpe.c \ t3_metro.c \ t3_sig~.c \ t3_timer.c \ - iem_t3_lib.c + $(TARGET).c OBJ = $(SRC:.c=.obj) .c.obj: cl $(PD_WIN_C_FLAGS) $(PD_WIN_INCLUDE_PATH) /c $*.c -..\iem_t3_lib.dll: $(OBJ) - link $(PD_WIN_L_FLAGS) /dll /export:iem_t3_lib_setup \ - /out:..\iem_t3_lib.dll $(OBJ) $(PD_WIN_LIB) +..\$(TARGET).dll: $(OBJ) + link $(PD_WIN_L_FLAGS) /dll /export:$(TARGET)_setup \ + /out:..\$(TARGET).dll $(OBJ) $(PD_WIN_LIB) clean: del *.obj |