mirror of
https://codeberg.org/armin/noiz.git
synced 2026-09-01 14:00:54 +02:00
revert noiz.py state (first pywebview experiment with working zoom)
This commit is contained in:
parent
358b840f2c
commit
55b92ab42f
2 changed files with 46 additions and 5 deletions
23
Makefile
Normal file
23
Makefile
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
PREFIX ?= /usr/local
|
||||
BINDIR ?= $(PREFIX)/bin
|
||||
|
||||
CFLAGS ?= -O2 -Wall -Wextra
|
||||
CFLAGS += $(shell pkg-config --cflags gtk+-3.0 webkit2gtk-4.1)
|
||||
LIBS = $(shell pkg-config --libs gtk+-3.0 webkit2gtk-4.1)
|
||||
|
||||
.PHONY: all clean install uninstall
|
||||
|
||||
all: noiz
|
||||
|
||||
noiz: noiz.c
|
||||
$(CC) $(CFLAGS) -o $@ $< $(LIBS)
|
||||
|
||||
clean:
|
||||
rm -f noiz
|
||||
|
||||
install: noiz
|
||||
install -d $(DESTDIR)$(BINDIR)
|
||||
install -m 755 noiz $(DESTDIR)$(BINDIR)/noiz
|
||||
|
||||
uninstall:
|
||||
rm -f $(DESTDIR)$(BINDIR)/noiz
|
||||
Loading…
Add table
Add a link
Reference in a new issue