Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Removed wmutil rule from Makefile |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
75246cf9d13bd23f55adc5454e921994 |
User & Date: | jmcclure 2018-05-26 22:58:09 |
Context
2018-05-26
| ||
22:59 | Removed wmutil from Makefile part II: clean directive check-in: 1117436e86 user: jmcclure tags: trunk | |
22:58 | Removed wmutil rule from Makefile check-in: 75246cf9d1 user: jmcclure tags: trunk | |
2018-05-17
| ||
14:28 | Updated path to Xorg for xorg-server 1.20.0 on archlinux check-in: 7c53f0af97 user: jmcclure tags: trunk | |
Changes
Changes to Makefile.
1 2 3 4 5 6 7 8 9 10 11 12 13 | CC = gcc CFLAGS = -march=native -O2 -pipe -fstack-protector-strong -fno-plt LDFLAGS = -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now PREFIX = /usr all: $(CC) -o xi xi.c $(CFLAGS) $(LDFLAGS) $(CC) -o wmutil wmutil.c $(CFLAGS) $(LDFLAGS) -lX11 $(CC) -o tmuxwm tmuxwm.c $(CFLAGS) $(LDFLAGS) -lX11 install: install -Dm0755 xi $(DESTDIR)$(PREFIX)/bin/xi | < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | CC = gcc CFLAGS = -march=native -O2 -pipe -fstack-protector-strong -fno-plt LDFLAGS = -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now PREFIX = /usr all: $(CC) -o xi xi.c $(CFLAGS) $(LDFLAGS) $(CC) -o wmutil wmutil.c $(CFLAGS) $(LDFLAGS) -lX11 $(CC) -o tmuxwm tmuxwm.c $(CFLAGS) $(LDFLAGS) -lX11 install: install -Dm0755 xi $(DESTDIR)$(PREFIX)/bin/xi install -Dm0755 tmuxwm $(DESTDIR)$(PREFIX)/bin/tmuxwm clean: rm -f xi wmutil tmuxwm tmuxwm2 |