X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=Makefile;h=08a12db28144934daf20063cfc986a028578e2ac;hb=4a2c9e6fb315f56b08c27b05ba48f7dd73622f9d;hp=7b647d2575dfa2f4070335261981044ea2d7c02e;hpb=c93221ab34e692fc29e4610b4461bde563571671;p=wdq2wav.git diff --git a/Makefile b/Makefile index 7b647d2..08a12db 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,17 @@ base := wdq2wav -all: compile +all: compile-linux clean: rm -f $(base) $(base).o -compile: wdq2wav +compile-linux: wdq2wav + +debug: + g++ -g -I. $(base).cpp -o $(base) wdq2wav: wdq2wav.cpp wdq2wav.h - g++ -O2 -I. $(base).cpp -o $(base) + g++ -DLINUX -O2 -I. $(base).cpp -o $(base) install: compile install -m 0755 -o root -g root wdq2wav $(DESTDIR)/usr/bin