X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=Makefile;h=c56bfb6c1af20d0d2376b2f154ba936b9ccc68d7;hb=6e0f65ebf4769e7f90e2ef29539cd493de9bf14b;hp=08a12db28144934daf20063cfc986a028578e2ac;hpb=b12a849bcbdfc2fdcd6026cab709236587769f42;p=wdq2wav.git diff --git a/Makefile b/Makefile index 08a12db..c56bfb6 100644 --- a/Makefile +++ b/Makefile @@ -1,17 +1,20 @@ base := wdq2wav -all: compile-linux +all: compile clean: rm -f $(base) $(base).o -compile-linux: wdq2wav +compile: wdq2wav debug: - g++ -g -I. $(base).cpp -o $(base) + g++ -Wall -g -I. $(base).cpp -o $(base) + +wdq2wav.html: wdq2wav.1 + groff -man -Thtml wdq2wav.1 > wdq2wav.html wdq2wav: wdq2wav.cpp wdq2wav.h - g++ -DLINUX -O2 -I. $(base).cpp -o $(base) + g++ -Wall -DLINUX -O2 -I. $(base).cpp -o $(base) install: compile install -m 0755 -o root -g root wdq2wav $(DESTDIR)/usr/bin