mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-22 06:52:20 +00:00
Use short arguments
This commit is contained in:
parent
2416530613
commit
d93847e6a3
1 changed files with 4 additions and 2 deletions
|
@ -34,7 +34,8 @@ BUILD := build
|
||||||
SOURCES := .
|
SOURCES := .
|
||||||
INCLUDES := . ../lib/pngu
|
INCLUDES := . ../lib/pngu
|
||||||
|
|
||||||
HDR := $(TARGET).h $(wildcard $(TARGET)/*.h)
|
HDR := $(TARGET).h
|
||||||
|
INL := $(wildcard $(TARGET)/*.h)
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
# options for code generation
|
# options for code generation
|
||||||
|
@ -94,9 +95,10 @@ clean:
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
install:
|
install:
|
||||||
@mkdir -p $(DESTDIR)/lib $(DESTDIR)/include
|
@mkdir -p $(DESTDIR)/lib $(DESTDIR)/include/grrlib
|
||||||
@cp -f $(OUTPUT) $(DESTDIR)/lib
|
@cp -f $(OUTPUT) $(DESTDIR)/lib
|
||||||
@cp -f $(HDR) $(DESTDIR)/include
|
@cp -f $(HDR) $(DESTDIR)/include
|
||||||
|
@cp -f $(INL) $(DESTDIR)/include/grrlib
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue