Skip to content

Commit

Permalink
* Build system updated to work with Debian packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
dave committed Aug 20, 2007
1 parent 23fdff3 commit 91a7771
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ NAME=cntlm
VER=`cat VERSION`
DIR=`pwd`

$(NAME): .config-stamp $(OBJS)
$(NAME): configure-stamp $(OBJS)
@echo "Linking $@"
@$(CC) $(CFLAGS) -o $@ $(OBJS) $(LDFLAGS)

Expand Down Expand Up @@ -74,7 +74,7 @@ uninstall:
rm -f $(BINDIR)/$(NAME) $(MANDIR)/man1/$(NAME).1 2>/dev/null || true

clean:
@rm -f *.o tags cntlm endian pid .config-stamp 2>/dev/null
@rm -f *.o tags cntlm endian pid configure-stamp config/config.h 2>/dev/null

cleanp:
@rm -f *.deb *.tgz *.tar.gz *.rpm *.o tags cntlm pid massif* callgrind* 2>/dev/null
Expand Down
3 changes: 0 additions & 3 deletions config/config.h

This file was deleted.

2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

CC=gcc
STAMP=.config-stamp
STAMP=configure-stamp
CONFIG=config/config.h
TESTS="endian strdup gethostname"

Expand Down

0 comments on commit 91a7771

Please sign in to comment.