update makefile to compile stripped binary and remove gcc from readme

This commit is contained in:
Night Kaly 2024-05-22 10:52:37 +01:00
parent ec97aa30fd
commit 05625e1917
Signed by: night0721
GPG key ID: 957D67B8DB7A119B
2 changed files with 1 additions and 2 deletions

View file

@ -11,7 +11,7 @@ MANDIR = $(PREFIX)/share/man/man1
# Flags # Flags
LDFLAGS = $(shell pkg-config --libs libcurl) LDFLAGS = $(shell pkg-config --libs libcurl)
CFLAGS = -O3 -march=native -mtune=native -pipe -g -std=c99 -pedantic -Wall -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 CFLAGS = -O3 -march=native -mtune=native -pipe -s -std=c99 -pedantic -Wall -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600
SRC = bob.c SRC = bob.c

View file

@ -22,7 +22,6 @@ Usage:
# Dependencies # Dependencies
- gcc
- curl - curl
# Building # Building