forked from KSP-CKAN/CKAN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
29 lines (23 loc) · 763 Bytes
/
Makefile
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
# Are you working on the command line?
# Do you love unix tools?
# Then rejoice! You can type 'make test' to build and test!
all: build
build: FORCE
bin/build
clean:
rm -rf AutoUpdate/bin AutoUpdate/obj \
Cmdline/bin Cmdline/obj \
Core/bin Core/obj \
GUI/bin GUI/obj \
Netkan/bin Netkan/obj \
Tests/bin Tests/obj \
ckan.exe ckan.exe.mdb \
netkan.exe netkan.exe.mdb
test: build
nunit-console --exclude=FlakyNetwork build/Tests/bin/Debug/CKAN.Tests.dll
# This likely only works under Unix, but then again Unix folks are the only
# ones likely to have `fortune` installed. This target is for amusement purposes
# only.
fortune: quotes.txt
strfile quotes.txt
FORCE: