diff options
author | epochqwert <epoch@hacking.allowed.org> | 2019-02-10 09:01:01 +0000 |
---|---|---|
committer | epochqwert <epoch@hacking.allowed.org> | 2019-02-10 09:01:01 +0000 |
commit | 436e32179eb21f69ad05ae731da4da3b5b770e00 (patch) | |
tree | 94084870f942441bf8cc64594a96b01ed9ac3643 /Makefile | |
parent | 6dd1dc8187326b09ccdf051cb632016a03b3f7b6 (diff) | |
download | segfault-436e32179eb21f69ad05ae731da4da3b5b770e00.tar.gz segfault-436e32179eb21f69ad05ae731da4da3b5b770e00.zip |
changed makefile to use install instead of cp.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ -LDFLAGS=-lirc -lhashtable -CFLAGS=-std=c99 -pedantic -Wall +LDFLAGS=-lirc -lhashtable -L/usr/local/lib +CFLAGS=-std=c99 -pedantic -Wall -ggdb -I/usr/local/include all: segfault @@ -11,4 +11,4 @@ clean: rm -f segfault install: all - cp -f segfault /usr/local/bin/segfault + install segfault /usr/local/bin/ |