From e54d8327819e310b7b148e45c15fca197be845c7 Mon Sep 17 00:00:00 2001 From: nirav Date: Sun, 9 Sep 2018 12:13:13 +0530 Subject: Moved source files to src dir, updated makefile --- makefile | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile deleted file mode 100644 index f763130..0000000 --- a/makefile +++ /dev/null @@ -1,29 +0,0 @@ -RM=rm -f -INSTALL=install - -CFLAGS=-o2 -pipe -Wall -std=c11 $(shell pkg-config --cflags gtk+-3.0) -LDFLAGS=$(shell pkg-config --libs gtk+-3.0) - -PREFIX=/usr -BINDIR=$(PREFIX)/bin -OBJECTS=main.o file.o image.o input.o window.o - -all: qwe - -qwe: $(OBJECTS) - $(CC) -o qwe $(OBJECTS) $(LDFLAGS) - -.c.o: - $(CC) -c $(CFLAGS) -o $@ $< - -clean: - $(RM) $(OBJECTS) $(RESOURCES) qwe - -install: qwe - $(INSTALL) -m0755 qwe $(BINDIR) - -uninstall: - $(RM) $(BINDIR)/qwe - -run: qwe - ./qwe -- cgit v1.2.3