Update CFLAGS

This commit is contained in:
Night Kaly 2024-11-04 23:38:50 +00:00
parent ebcb013ab0
commit 7a123fba97
Signed by: night0721
SSH key fingerprint: SHA256:B/hgVwUoBpx5vdNsXl9w8XwZljA9766uk6T4ubZp5HM
3 changed files with 38 additions and 2 deletions

36
1 Normal file
View file

@ -0,0 +1,36 @@
.POSIX:
.SUFFIXES:
VERSION = 1.0
TARGET = lcc
PREFIX ?= /usr/local
BINDIR = $(PREFIX)/bin
CFLAGS = -Os -march=native -mtune=native -pipe -s -std=c99 -pedantic -Wall
SRC = lcc.c
$(TARGET): $(SRC)
$(CC) $(SRC) -o $@ $(CFLAGS)
dist:
mkdir -p $(TARGET)-$(VERSION)
cp -R README.md $(TARGET) $(TARGET)-$(VERSION)
tar -cf $(TARGET)-$(VERSION).tar $(TARGET)-$(VERSION)
gzip $(TARGET)-$(VERSION).tar
rm -rf $(TARGET)-$(VERSION)
install: $(TARGET)
mkdir -p $(DESTDIR)$(BINDIR)
cp -p $(TARGET) $(DESTDIR)$(BINDIR)/$(TARGET)
chmod 755 $(DESTDIR)$(BINDIR)/$(TARGET)
uninstall:
rm $(DESTDIR)$(BINDIR)/$(TARGET)
clean:
rm $(TARGET)
all: $(TARGET)
.PHONY: all dist install uninstall clean

View file

@ -6,7 +6,7 @@ TARGET = lcc
PREFIX ?= /usr/local
BINDIR = $(PREFIX)/bin
CFLAGS = -O3 -march=native -mtune=native -pipe -s -std=c99 -pedantic -Wall
CFLAGS = -Os -march=native -mtune=native -pipe -s -std=c99 -pedantic -Wall
SRC = lcc.c

2
lcc.c
View file

@ -5,7 +5,7 @@
#include <ctype.h>
#include <sys/stat.h>
#include <unistd.h>
#include <limits.h>
#include <linux/limits.h>
#include "lcc.h"