mirror of
https://codeberg.org/armin/noiz.git
synced 2026-09-01 05:50:52 +02:00
remove obsolete Makefile
This commit is contained in:
parent
55b92ab42f
commit
f11181232e
1 changed files with 0 additions and 23 deletions
23
Makefile
23
Makefile
|
|
@ -1,23 +0,0 @@
|
||||||
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