forked from maikebing/minigui2.0.4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile.ng
34 lines (24 loc) · 794 Bytes
/
makefile.ng
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
32
33
# Top makefile for building the MiniGUI libraries
# and GNU Make
# Useful for non-gcc compilers
# Use: make -f makefile.ng [options]
###############################################################################
# This is the top project directory
TOPPROJALL = 1
TOPLOOP=1
TOP_DIR=.
# sub lib or install directories
SUB_DIRS = src ext include
###############################################################################
# Includes the common make defines
include rules.make
###############################################################################
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