Browse Source

Add dist target

master
sin 10 years ago
parent
commit
89d0dc35ee
1 changed files with 10 additions and 1 deletions
  1. +10
    -1
      Makefile

+ 10
- 1
Makefile View File

@@ -1,3 +1,5 @@
VERSION = 0.0

PREFIX = /usr/local PREFIX = /usr/local
MANPREFIX = $(PREFIX)/man MANPREFIX = $(PREFIX)/man


@@ -27,8 +29,15 @@ uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/$(BIN) rm -f $(DESTDIR)$(PREFIX)/bin/$(BIN)
rm -f $(DESTDIR)$(MANPREFIX)/man1/$(BIN).1 rm -f $(DESTDIR)$(MANPREFIX)/man1/$(BIN).1


dist:
mkdir -p noice-$(VERSION)
cp LICENSE Makefile README config.def.h noice.1 noice.c queue.h strlcat.c strlcpy.c util.h noice-$(VERSION)
tar -cf noice-$(VERSION).tar noice-$(VERSION)
gzip noice-$(VERSION).tar
rm -rf noice-$(VERSION)

clean: clean:
rm -f $(BIN) $(OBJ)
rm -f $(BIN) $(OBJ) noice-$(VERSION).tar.gz


.SUFFIXES: .def.h .SUFFIXES: .def.h




Loading…
Cancel
Save