mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Added some incremental install directives
This commit is contained in:
parent
9b435ba904
commit
993d1b618c
1 changed files with 10 additions and 0 deletions
10
Makefile
10
Makefile
|
@ -98,6 +98,16 @@ clean:
|
|||
rm -rf a.out *.o *.so *.a *.out tags cyclone icyc scheme/*.o scheme/*.c scheme/cyclone/*.o scheme/cyclone/*.c dispatch.c icyc.c generate-c.c generate-c
|
||||
$(foreach f,$(TESTSCM), rm -rf $(f) $(f).c tests/$(f).c;)
|
||||
|
||||
install-includes:
|
||||
$(MKDIR) $(DESTDIR)$(INCDIR)
|
||||
$(INSTALL) -m0644 include/cyclone/*.h $(DESTDIR)$(INCDIR)/
|
||||
|
||||
install-libs:
|
||||
$(MKDIR) $(DESTDIR)$(LIBDIR)
|
||||
$(INSTALL) -m0644 libcyclone.a $(DESTDIR)$(LIBDIR)/
|
||||
|
||||
# TODO: rewrite install to be in terms of incremental steps above.
|
||||
# also want to propagate this change to cyclone-bootstrap
|
||||
install:
|
||||
$(MKDIR) $(DESTDIR)$(BINDIR)
|
||||
$(MKDIR) $(DESTDIR)$(LIBDIR)
|
||||
|
|
Loading…
Add table
Reference in a new issue