Manage your ASL charts, play aids and other documents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asl-charts/Makefile

20 lines
350 B

5 years ago
SRC := $(wildcard src/*.cs)
OUTPUT := out
all: init compile
init:
mkdir -p $(OUTPUT)
compile:
csc $(SRC) /nologo /warnaserror \
/r:lib/Newtonsoft.Json.dll \
/r:lib/ImageListView.dll \
5 years ago
/d:TRACE \
/target:winexe /out:$(OUTPUT)/asl-charts.exe
cp app.config $(OUTPUT)/asl-charts.exe.config
cp lib/*.dll $(OUTPUT)
5 years ago
clean:
rm -r $(OUTPUT)