~ubuntu-branches/ubuntu/vivid/inform/vivid

« back to all changes in this revision

Viewing changes to debian/Makefile.upstream

  • Committer: Bazaar Package Importer
  • Author(s): Jan Christoph Nordholz
  • Date: 2008-05-26 22:09:44 UTC
  • mfrom: (2.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080526220944-ba7phz0d1k4vo7wx
Tags: 6.31.1+dfsg-1
* Remove a considerable number of files from the package
  due to unacceptable licensing terms.
* Repair library symlinks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SRC := $(wildcard *.c)
 
2
OBJ := $(patsubst %.c,%.o,$(SRC))
 
3
 
 
4
.PHONY: clean all
 
5
 
 
6
all: inform-6.31
 
7
 
 
8
$(OBJ): %.o: %.c
 
9
        gcc $(CFLAGS) -DLINUX -DInclude_Directory="\"/usr/share/inform-6.31/include,/usr/share/inform-6.31/modules\"" \
 
10
          -Wall -Wextra -Wno-uninitialized $^ -c -o $@
 
11
 
 
12
inform-6.31: $(OBJ)
 
13
        gcc $(CFLAGS) $^ -o $@
 
14
 
 
15
clean:
 
16
        rm -f *.o inform-6.31