abraunegg-onedrive/Makefile

19 lines
394 B
Makefile
Raw Normal View History

2015-09-01 20:45:34 +02:00
DC = dmd
2015-09-11 18:33:22 +02:00
DFLAGS = -debug -g -gs -od./bin -of./bin/$@ -L-lcurl -L-lsqlite3 -L-ldl
2015-09-01 20:45:34 +02:00
SOURCES = \
2015-09-11 18:33:22 +02:00
/usr/include/dlang/dmd/core/sys/posix/poll.d \
/usr/include/dlang/dmd/etc/c/curl.d \
/usr/include/dlang/dmd/std/net/curl.d \
2015-09-01 20:45:34 +02:00
src/cache.d \
src/config.d \
src/main.d \
2015-09-11 18:33:22 +02:00
src/monitor.d \
2015-09-01 20:45:34 +02:00
src/onedrive.d \
src/sqlite.d \
src/sync.d \
src/util.d
onedrive: $(SOURCES)
$(DC) $(DFLAGS) $(SOURCES)