source: trunk/src/Makefile @ 65

Last change on this file since 65 was 65, checked in by tim, 18 years ago

fixed a bug in types

added paranoid checks in smb_deps to prevent NULL pointer dereferences and corner-case memory leaks.

  • Property svn:keywords set to Id
File size: 402 bytes
Line 
1# $Id: Makefile 65 2006-07-23 17:00:20Z tim $
2
3################################################################################
4
5REGLOOKUP=$(BUILD_BIN)/reglookup
6LIBS=$(wildcard ../lib/*.o)
7FILES=$(REGLOOKUP)
8
9all: $(FILES)
10
11$(REGLOOKUP): reglookup.o $(LIBS)
12        $(CC) $(CFLAGS) $(OPTS) -o $@ reglookup.o $(LIBS)
13
14reglookup.o: reglookup.c
15        $(CC) $(CFLAGS) $(OPTS) -c -o $@ reglookup.c
16
17install:
18        cp -r $(FILES) $(BIN_PREFIX)
19
20clean:
21        rm -f *.o
Note: See TracBrowser for help on using the repository browser.