-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsrcbinfolder_makefile
62 lines (45 loc) · 1.27 KB
/
srcbinfolder_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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#This make file has a src folder and a bin folder. To use edit the
#variables at the top of the file.
#Project name will make project.exe project.dll etc
PROJECTNAME = project
#your src directory if you prefer Code/ for single folder use ./
SRCDIR = src/
#your bin directory if you prefer Whatever/ for single folder use ./
BINDIR = bin/
#libraries to add eg myfoo.dll,somethingelse.dll
LIBS=
#type of output exe, winexe, library, module
OUTPUTTYPE=library
#C# compiler
MCS=gmcs
#any other compiler flags
GMCSFLAGS = -debug
ifeq ($(OUTPUTTYPE),exe)
GMCSFLAGS += /target:exe
FULLOUTPUT = $(PROJECTNAME).exe
endif
ifeq ($(OUTPUTTYPE),library)
GMCSFLAGS += /target:library
FULLOUTPUT = $(PROJECTNAME).dll
endif
ifeq ($(OUTPUTTYPE),winexe)
GMCSFLAGS += /target:winexe
FULLOUTPUT = $(PROJECTNAME).exe
endif
ifeq ($(OUTPUTTYPE),module)
GMCSFLAGS += /target:module
FULLOUTPUT = $(PROJECTNAME).dll
endif
CSHARPFILES := $(shell find $(SRCDIR) -name '*.cs')
SRC = $(CSHARPFILES)
OUTPUT = $(BINDIR)$(FULLOUTPUT)
all: $(FULLOUTPUT)
$(FULLOUTPUT): $(SRC) outputdir
$(MCS) /out:$(OUTPUT) -r:$(LIBS) $(GMCSFLAGS) $(SRC)
outputdir:
mkdir -p $(BINDIR)
#install: all
# cp $(PROJECTNAME).dll /someplace
clean:
rm -f $(BINDIR)$(PROJECTNAME).exe
rm -f $(BINDIR)$(PROJECTNAME).exe.mdb