[BACK]Return to GNUmakefile CVS log [TXT][DIR] Up to [Development] / inventor

Annotation of inventor/GNUmakefile, Revision 1.4

1.3       jlim        1: IVDEPTH = .
                      2: include $(IVDEPTH)/make/ivcommondefs
1.1       naaman      3:
1.3       jlim        4:
                      5: # Use of LSUBDIRS is to allow override using environment variable without
                      6: # conflicting with SUBDIRS in subdirectory makefiles.
                      7:
1.4     ! jlim        8: LSUBDIRS = libimage tools libFL lib libSoXt doc data apps
1.3       jlim        9: SUBDIRS = $(LSUBDIRS)
                     10:
                     11: all install $(COMMONTARGS):
                     12: 	$(SUBDIRS_MAKERULE)
                     13:
                     14:
                     15: SPECS = sgi-OpenInventor-clients.rpm.spec \
                     16: 	sgi-OpenInventor-data.rpm.spec \
                     17: 	sgi-OpenInventor-devel.rpm.spec
                     18:
                     19: TARBALL = oiv.tar.gz
1.1       naaman     20:
                     21: rpms:
1.3       jlim       22: 	cd ..; rm -f $(TARBALL); tar zcvf $(TARBALL) inventor
                     23: 	su -c "cp -f ../$(TARBALL) /usr/src/redhat/SOURCES"
1.1       naaman     24:
1.3       jlim       25: 	for s in $(SPECS); do \
                     26: 	  (su -c "cd build; rpm -bb $$s") \
                     27: 	done;

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>