mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-21 14:32: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 := .
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue