Download this file
24 lines (21 with data), 532 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 | export BUILD := $(shell pwd)/build
export LIB := $(shell pwd)/lib
export CPP := g++.exe
export CC := gcc.exe
export AR := ar.exe -r
export WINDRES := windres.exe
export DLLWRAP = dllwrap.exe
export CXXFLAGS := -g -ansi -pedantic -Wall -mno-cygwin
export CFLAGS := -g -ansi -pedantic -Wall -mno-cygwin
export LDFLAGS := -L$(LIB)
all:
echo BUILD=$(BUILD)
mkdir -p $(BUILD)
mkdir -p $(LIB)
$(MAKE) -C util
$(MAKE) -C diff-ext
$(MAKE) -C setup
clean:
$(MAKE) -C util clean
$(MAKE) -C diff-ext clean
$(MAKE) -C setup 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.