From 7538237e9cc26f788ba0fd65c97019ef250b5004 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Mon, 30 Jul 2018 15:14:49 -0400 Subject: Move graphical programs out of bin I wonder when the last time was something needed -ledit... --- gfx/Makefile | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 gfx/Makefile (limited to 'gfx/Makefile') diff --git a/gfx/Makefile b/gfx/Makefile new file mode 100644 index 00000000..f2ae4bee --- /dev/null +++ b/gfx/Makefile @@ -0,0 +1,31 @@ +BINS = brot gfxx +GFX ?= cocoa + +CFLAGS += -Wall -Wextra -Wpedantic +LDLIBS = -lm -lz +LDLIBS_cocoa = -framework Cocoa +LDLIBS_x11 = -lX11 + +all: .gitignore tags $(BINS) + +.gitignore: Makefile + echo '*.o' tags $(BINS) | tr ' ' '\n' > .gitignore + +tags: *.h *.c + ctags -w *.h *.c + +brot: brot.o $(GFX).o + $(CC) $(LDFLAGS) brot.o $(GFX).o $(LDLIBS) $(LDLIBS_$(GFX)) -o $@ + +gfxx: gfxx.o $(GFX).o + $(CC) $(LDFLAGS) gfxx.o $(GFX).o $(LDLIBS) $(LDLIBS_$(GFX)) -o $@ + +clean: + rm -f tags *.o $(BINS) + +link: + mkdir -p ~/.local/bin + ln -s -f $(BINS:%=$(PWD)/%) ~/.local/bin + +unlink: + rm -f $(BINS:%=~/.local/bin/%) -- cgit 1.4.1 '/libretls/log/compat?h=3.8.1&follow=1'>log tree commit diff
path: root/compat (unfollow)
Commit message (Expand)Author
2020-11-24Import LibreSSL 3.3.0June McEnroe
2020-10-22Import LibreSSL 3.2.2June McEnroe
2020-09-29Import LibreSSL 3.2.1June McEnroe
2020-09-29import: Add m4/ax_add_fortify_source.m4June McEnroe
2020-08-05build: Add README.7 to EXTRA_DIST 3.2.0June McEnroe
2020-08-03doc: Indicate that only OpenSSL 1.1.1b and newer workJune McEnroeclass='logsubject'>Update PowerlineJune McEnroe
2012-02-29Add shiftround optionJune McEnroe
2012-02-25Add ,z mapping to toggle spellJune McEnroe
2012-02-13Add badwolf colorschemeJune McEnroe
2012-02-11Customize C/C++ indentationJune McEnroe
2012-02-07Update Powerline to 'develop' branchJune McEnroe
2012-02-07Add Solarized colorschemeJune McEnroe
2012-02-07Add back set nocompatible, even though it seemed to end up set anywayJune McEnroe
2012-02-05Update jellybeansJune McEnroe
2012-02-02Update itchy.vimJune McEnroe
2012-02-02Add mapping to toggle relative/absolute numberingJune McEnroe
2012-02-02Add itchy.vimJune McEnroe
2012-02-01Revert "Add ShowMarks plugin"June McEnroe
This reverts commit ddcfaef5145595f8e15f34f091e50fb85a9a6149.
2012-02-01Add ShowMarks pluginJune McEnroe
2012-02-01Update Vim-Tomorrow-ThemeJune McEnroe
2012-02-01Add vim-markdownJune McEnroe
2012-02-01Add tabular.vimJune McEnroe
2012-02-01Update Vim-Tomorrow-ThemeJune McEnroe
PS. Chris Kempson is a jerk.
2012-01-30Disable menu bar in GVimJune McEnroe
2012-01-30Set shiftwidth to 4 for LuaJune McEnroe
2012-01-29Don't show Syntastic errors automaticallyJune McEnroe
2012-01-28Update to Quicktask 1.1June McEnroe
2012-01-22Use space-test branch of quicktaskJune McEnroe
2012-01-22Enable syntax-based foldingJune McEnroe
2012-01-22Update quicktaskJune McEnroe
2012-01-22Revert "Add AutoClose"June McEnroe
This reverts commit 2705f4b91a56caf4cf2b3b89b247580debd5d453. This fixes the delay when leaving insert mode
2012-01-22Revert "Disable powerline for now"June McEnroe
This reverts commit 171b1aa0d1d445a1223d0d638f2798b780c3e1ce.
2012-01-22Revert "Add VCS repo directories to wildignore"June McEnroe
This reverts commit f4cc36a0aca465eea866fa7131a19497d46e63f0. This fixes not being able to commit with vim-fugitive
2012-01-22Disable powerline for nowJune McEnroe
2012-01-22Update some pluginsJune McEnroe
2012-01-22Add VCS repo directories to wildignoreJune McEnroe
2012-01-22Map ,e and ,b to CtrlP file and buffer respectivelyJune McEnroe
2012-01-22Add vim-spaceJune McEnroe
2012-01-22Add AutoCloseJune McEnroe
2012-01-22Add binding for GundoJune McEnroe
2012-01-22Add GundoJune McEnroe
2012-01-22Add Jellybeans colorschemeJune McEnroe
2012-01-22Add syntasticJune McEnroe
2012-01-21Add PowerlineJune McEnroe
2012-01-21Add quicktaskJune McEnroe
2012-01-15Moved comments out of mapsJune McEnroe
2012-01-14Disable scrollbarsJune McEnroe