From d93847e6a3e350bd1157d61cc1315d8bbff76968 Mon Sep 17 00:00:00 2001 From: Crayon2000 Date: Thu, 18 Apr 2024 00:26:51 -0400 Subject: [PATCH] Use short arguments --- GRRLIB/GRRLIB/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/GRRLIB/GRRLIB/Makefile b/GRRLIB/GRRLIB/Makefile index 3786997..f7a32f7 100644 --- a/GRRLIB/GRRLIB/Makefile +++ b/GRRLIB/GRRLIB/Makefile @@ -34,7 +34,8 @@ BUILD := build SOURCES := . INCLUDES := . ../lib/pngu -HDR := $(TARGET).h $(wildcard $(TARGET)/*.h) +HDR := $(TARGET).h +INL := $(wildcard $(TARGET)/*.h) #--------------------------------------------------------------------------------- # options for code generation @@ -94,9 +95,10 @@ clean: #--------------------------------------------------------------------------------- install: - @mkdir -p $(DESTDIR)/lib $(DESTDIR)/include + @mkdir -p $(DESTDIR)/lib $(DESTDIR)/include/grrlib @cp -f $(OUTPUT) $(DESTDIR)/lib @cp -f $(HDR) $(DESTDIR)/include + @cp -f $(INL) $(DESTDIR)/include/grrlib #--------------------------------------------------------------------------------- else