blob: fe343d4aeba6a87c58e5ae51869c7b1938dad58f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Note:
#
# You may need to modify the configuration of Build - Options - Directories
# for the Executable path to include the perl interpreter within DevStudio.
# E.g. add c:\program files\perl\bin to the list of directories
!IF "$(TARGET)" == ""
TARGET=all
!ENDIF
all: Makefile
$(MAKE) /nologo /f Makefile $(TARGET)
Makefile: Makefile.in
perl MakeWin32Make.pl
|