Download this file
27 lines (23 with data), 537 Bytes
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 | .EXPORT_ALL_VARIABLES:
ROOT ?= $(shell pwd)
BIN ?= $(ROOT)/bin
BUILD ?= $(ROOT)/build
LIB ?= $(ROOT)/lib
INCLUDE ?= -I$(ROOT)/include
CXX ?= g++.exe
CC ?= gcc.exe
AR ?= ar.exe
RC ?= windres.exe
DLLWRAP ?= dllwrap.exe
CXXFLAGS ?= -ansi -pedantic -Wall -W $(INCLUDE)
CFLAGS ?= -ansi -pedantic -Wall -W $(INCLUDE)
RCFLAGS ?= -DMING $(INCLUDE)
LDFLAGS ?= -L$(LIB)
ARFLAGS ?= crv
UPDATE_VERSION ?= $(BIN)/update_version.exe
all:
echo $(ROOT)
mkdir -p $(LIB)
$(MAKE) -C src
clean:
$(MAKE) -C src clean
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.