forked from VincentWei/MiniGUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile.msvc
32 lines (22 loc) · 813 Bytes
/
makefile.msvc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Top makefile for building the MiniGUI DLLs/libs with Microsoft Visual C++ compiler
# and NMAKE
# Use: nmake -f makefile.msvc [options]
###############################################################################
# This is the top project directory
TOPPROJALL = 1
# sub lib or install directories
SUB_DIRS = src ext include
###############################################################################
# Includes the common make defines
!INCLUDE build\Defs.win32
!INCLUDE build\makedefs.msvc
###############################################################################
install::
$(CP) mgconfig.h $(includedir)\minigui\mgconfig.h
installdirs : force
-mkdir $(prefix)
-mkdir $(includedir)
-mkdir $(includedir)\minigui
-mkdir $(libdir)
mgconfig.h: $(CONFIGH)
$(CP) $(CONFIGH) mgconfig.h