ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/SambaTest/GNUmakefile
Revision: 413
Committed: 2005-01-14T20:43:21-08:00 (20 years, 5 months ago) by douglas
File size: 370 byte(s)
Log Message:
Gah!

File Contents

# Content
1 # Samba Test
2 #
3 # Douglas Thrift
4 #
5 # $Id$
6
7 ifeq ($(shell uname -r | grep -v ^4\\.),)
8 CXX := g++34
9 endif
10 CPPFLAGS := -I/usr/local/include -MD
11 LDFLAGS := -L/usr/local/lib
12 LDLIBS := -lsmbclient
13
14 all: SambaTest
15
16 SambaTest: SambaTest.cpp
17 $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ $< $(LOADLIBES) $(LDLIBS)
18
19 -include *.d
20
21 .PHONY: clean
22
23 clean:
24 -rm SambaTest *.core *.d

Properties

Name Value
svn:keywords Id