takes text and makes it worse
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# compiler flags:
|
|
# -g adds debugging information to the executable file
|
|
# -Wall turns on most, but not all, compiler warnings
|
|
CFLAGS += -g -Wall
|
|
|
|
# the build target executable:
|
|
TARGET = owo
|
|
|
|
PREFIX ?= /usr/local
|
|
|
|
all: $(TARGET)
|
|
|
|
install: $(TARGET)
|
|
mkdir -p $(DESTDIR)$(PREFIX)/bin
|
|
install $< $(DESTDIR)$(PREFIX)/bin
|
|
|
|
clean:
|
|
$(RM) $(TARGET)
|