1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-03 16:37:45 +02:00

Makefile: fix typo

This commit is contained in:
Ansa89 2014-06-24 00:23:37 +02:00
parent c53600b550
commit 47b9648f85

View File

@ -43,16 +43,16 @@ else
CFLAGS += CFLAGS +=
LDFLAGS += LDFLAGS +=
endif endif
UNAME_P = $(shell uname -p) UNAME_M = $(shell uname -m)
ifeq ($(UNAME_P), x86_64) ifeq ($(UNAME_M), x86_64)
CFLAGS += CFLAGS +=
LDFLAGS += LDFLAGS +=
endif endif
ifneq ($(filter %86, $(UNAME_P)),) ifneq ($(filter %86, $(UNAME_M)),)
CFLAGS += CFLAGS +=
LDFLAGS += LDFLAGS +=
endif endif
ifneq ($(filter arm%, $(UNAME_P)),) ifneq ($(filter arm%, $(UNAME_M)),)
CFLAGS += CFLAGS +=
LDFLAGS += LDFLAGS +=
endif endif