Home | History | Annotate | Line # | Download | only in sqlite2mdoc
      1 # If you're on Linux, un-comment the following.
      2 #LDADD	 = -lbsd
      3 
      4 #####################################################################
      5 # You probably don't want to change anything beneath here.
      6 #####################################################################
      7 
      8 CFLAGS	+= -g -W -Wall
      9 PREFIX	 = /usr/local
     10 
     11 sqlite2mdoc: main.o
     12 	$(CC) -o $@ main.o $(LDADD)
     13 
     14 install:
     15 	mkdir -p $(DESTDIR)$(PREFIX)/bin
     16 	mkdir -p $(DESTDIR)$(PREFIX)/man/man1
     17 	install -m 0755 sqlite2mdoc $(DESTDIR)$(PREFIX)/bin
     18 	install -m 0444 sqlite2mdoc.1 $(DESTDIR)$(PREFIX)/man/man1
     19 
     20 clean:
     21 	rm -f sqlite2mdoc main.o
     22 	rm -rf sqlite2mdoc.dSYM
     23