~ubuntu-branches/ubuntu/wily/sgt-puzzles/wily

« back to all changes in this revision

Viewing changes to Makefile.nestedvm

  • Committer: Package Import Robot
  • Author(s): Ben Hutchings
  • Date: 2014-10-01 22:10:50 UTC
  • mfrom: (1.2.14)
  • Revision ID: package-import@ubuntu.com-20141001221050-a83g6j14c9dal6ek
Tags: 20140928.r10274-1
* New upstream version
  - Version scheme is now date-based
  - Fix a failure to warn about non-unique rows/columns in non-square Unruly
    grids (Closes: #718354)
* Add Debian menu entries for Range and Signpost
* debian/watch: Delete, as new versions are date-based and there is
  currently no obvious way to find the last date changed
* Disable 304_combine-binaries.diff which no longer applies
* Build using autotools
  - Drop patches 301_fix-install-dirs.diff, 305_no-werror.diff
* Exclude puzzles.chm from orig tarball because it requires non-free tools
  to regenerate from source
* Update policy version to 3.9.6; no changes required

Show diffs side-by-side

added added

removed removed

Lines of Context:
154
154
                misc.o pegs.o pegs-icon.o printing.o ps.o random.o tree234.o \
155
155
                version.o  -lm
156
156
 
157
 
range.mips: drawing.o nestedvm.o malloc.o midend.o misc.o printing.o ps.o \
158
 
                random.o range.o range-icon.o version.o
159
 
        $(CC) $(XLDFLAGS) -o $@ drawing.o nestedvm.o malloc.o midend.o \
 
157
range.mips: drawing.o dsf.o nestedvm.o malloc.o midend.o misc.o printing.o \
 
158
                ps.o random.o range.o range-icon.o version.o
 
159
        $(CC) $(XLDFLAGS) -o $@ drawing.o dsf.o nestedvm.o malloc.o midend.o \
160
160
                misc.o printing.o ps.o random.o range.o range-icon.o \
161
161
                version.o  -lm
162
162
 
556
556
        $(CC) $(COMPAT) $(FWHACK) $(CFLAGS) $(XFLAGS) -c $< -o $@
557
557
untangl3.o: ./untangle.c ./puzzles.h ./tree234.h
558
558
        $(CC) $(COMPAT) $(FWHACK) $(CFLAGS) $(XFLAGS) -DCOMBINED -c $< -o $@
 
559
version.o: ./version.c ./version.h
 
560
        $(CC) $(COMPAT) $(FWHACK) $(CFLAGS) $(XFLAGS) -c $< -o $@
559
561
windows.o: ./windows.c ./puzzles.h ./resource.h
560
562
        $(CC) $(COMPAT) $(FWHACK) $(CFLAGS) $(XFLAGS) -c $< -o $@
561
563
windows1.o: ./windows.c ./puzzles.h ./resource.h
562
564
        $(CC) $(COMPAT) $(FWHACK) $(CFLAGS) $(XFLAGS) -DCOMBINED -c $< -o $@
563
565
 
564
 
version.o: version.c version2.def
565
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) `cat version2.def` -c version.c
566
 
version2.def: FORCE
567
 
        if test -z "$(VER)" && test -f manifest && md5sum -c manifest; then \
568
 
                cat version.def > version2.def.new; \
569
 
        elif test -z "$(VER)" && test -d .svn && svnversion . >/dev/null 2>&1; then \
570
 
                echo "-DREVISION=`svnversion .`" >version2.def.new; \
571
 
        else \
572
 
                echo "$(VER)" >version2.def.new; \
573
 
        fi && \
574
 
        if diff -q version2.def.new version2.def; then \
575
 
                rm version2.def.new; \
576
 
        else \
577
 
                mv version2.def.new version2.def; \
578
 
        fi
579
 
.PHONY: FORCE
580
566
.PRECIOUS: %.class
581
567
%.class: %.mips
582
568
        java -cp $(NESTEDVM)/build:$(NESTEDVM)/upstream/build/classgen/build \