diff options
Diffstat (limited to '')
| -rw-r--r-- | Makefile | 16 | 
1 files changed, 12 insertions, 4 deletions
@@ -1,16 +1,23 @@  .POSIX: +CONFIGFILE = config.mk +include $(CONFIGFILE) + +OS = linux +# Linux:   linux +# Mac OS:  macos +# Windows: windows +include mk/$(OS).mk + +  LIB_MAJOR = 1  LIB_MINOR = 2  LIB_VERSION = $(LIB_MAJOR).$(LIB_MINOR) -CONFIGFILE = config.mk -OSCONFIGFILE = linux.mk -include $(CONFIGFILE) -include $(OSCONFIGFILE)  include man.mk +  all: libcoopgamma.a libcoopgamma.$(LIBEXT) test  .c.o: @@ -41,6 +48,7 @@ install: libcoopgamma.a libcoopgamma.$(LIBEXT)  	cp -- libcoopgamma.h "$(DESTDIR)$(PREFIX)/include"  	cp -- libcoopgamma.a "$(DESTDIR)$(PREFIX)/lib"  	cp -- libcoopgamma.$(LIBEXT) "$(DESTDIR)$(PREFIX)/lib/libcoopgamma.$(LIBMINOREXT)" +	$(FIX_INSTALL_NAME) "$(DESTDIR)$(PREFIX)/lib/libcoopgamma.$(LIBMINOREXT)"  	ln -sf -- libcoopgamma.$(LIBMINOREXT) "$(DESTDIR)$(PREFIX)/lib/libcoopgamma.$(LIBMAJOREXT)"  	ln -sf -- libcoopgamma.$(LIBMINOREXT) "$(DESTDIR)$(PREFIX)/lib/libcoopgamma.$(LIBEXT)"  	cp -- $(MAN0) "$(DESTDIR)$(MANPREFIX)/man0"  | 
