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
353 B

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 \
/r:lib/log4net.dll \
/d:TRACE \
/target:winexe /out:$(OUTPUT)/asl-charts.exe \
/win32icon:src/app.ico
cp lib/*.dll $(OUTPUT)
clean:
rm -r $(OUTPUT)