sourcecode: udpate building stuff.

- Remove `set -x` from install.sh
- Add cflags to Makefile
This commit is contained in:
Érico Rolim 2020-07-07 17:34:18 -03:00
parent 7ee3b51e5a
commit 827ad9943c
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
set -eux set -eu
GOINSTALL= GOINSTALL=
SSHFS= SSHFS=

View File

@ -2,6 +2,8 @@ SRC = sshfs-map.c
OBJ = sshfs-map OBJ = sshfs-map
UOBJ = sshfs-unmap UOBJ = sshfs-unmap
CFLAGS = -g3 -ggdb -O2
DESTDIR ?= / DESTDIR ?= /
PREFIX ?= usr/local PREFIX ?= usr/local