Initial release
This commit is contained in:
parent
317b8ae536
commit
7ad15ec40e
22
include/Makefile
Normal file
22
include/Makefile
Normal file
|
@ -0,0 +1,22 @@
|
|||
PREFIX = /usr/local
|
||||
DESTDIR =
|
||||
RM = rm -f
|
||||
MKDIR = mkdir -p
|
||||
INSTALL = install
|
||||
INCLUDEDIR= $(PREFIX)/include
|
||||
|
||||
|
||||
all:
|
||||
|
||||
clean:
|
||||
|
||||
distclean: clean
|
||||
|
||||
install: all
|
||||
$(MKDIR) $(DESTDIR)$(INCLUDEDIR)
|
||||
$(INSTALL) -m 0644 cpp.h $(DESTDIR)$(INCLUDEDIR)/cpp.h
|
||||
|
||||
uninstall:
|
||||
$(RM) $(DESTDIR)$(INCLUDEDIR)/cpp.h
|
||||
|
||||
.PHONY: all clean distclean install uninstall
|
2
include/project.conf
Normal file
2
include/project.conf
Normal file
|
@ -0,0 +1,2 @@
|
|||
includes=cpp.h
|
||||
dist=Makefile
|
Loading…
Reference in New Issue
Block a user