My build of nnn with minor changes
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Makefile 553 B

il y a 10 ans
il y a 10 ans
il y a 10 ans
il y a 10 ans
il y a 10 ans
il y a 10 ans
il y a 10 ans
12345678910111213141516171819202122232425262728293031323334
  1. PREFIX = /usr/local
  2. MANPREFIX = $(PREFIX)/man
  3. #CPPFLAGS += -DDEBUG
  4. #CFLAGS += -g
  5. LDLIBS = -lncursesw
  6. OBJ = noice.o strlcpy.o
  7. BIN = noice
  8. all: $(BIN)
  9. $(BIN): $(OBJ)
  10. $(CC) $(CFLAGS) -o $@ $(OBJ) $(LDLIBS)
  11. noice.o: queue.h util.h config.h
  12. strlcpy.o: util.h
  13. install: all
  14. mkdir -p $(DESTDIR)$(PREFIX)/bin
  15. cp -f $(BIN) $(DESTDIR)$(PREFIX)/bin
  16. cp -f $(BIN).1 $(DESTDIR)$(MANPREFIX)/man1
  17. uninstall:
  18. rm -f $(DESTDIR)$(PREFIX)/bin/$(BIN)
  19. rm -f $(DESTDIR)$(MANPREFIX)/man1/$(BIN).1
  20. clean:
  21. rm -f $(BIN) $(OBJ)
  22. .SUFFIXES: .def.h
  23. .def.h.h:
  24. cp $< $@