d466f09909bdc56b38fd1a0fae05d21d330fd85c
[reactos.git] / reactos / subsys / system / lsass / makefile
1 # $Id: makefile,v 1.1 2001/07/24 10:18:05 ekohl Exp $
2 #
3 # Local Security Authority Subsystem
4 #
5 # ReactOS Operating System
6 #
7 TARGET=lsass
8
9 BASE_CFLAGS = -I../../include
10
11 OBJECTS = $(TARGET).o init.o $(TARGET).coff
12
13 LIBS = ../../lib/ntdll/ntdll.a
14
15 all: $(TARGET).exe
16
17 .phony: all
18
19 clean:
20 - $(RM) $(TARGET).o $(TARGET).exe $(TARGET).sym $(TARGET).coff
21
22 .phony: clean
23
24 $(TARGET).coff: $(TARGET).rc
25 $(RC) $(TARGET).rc $(TARGET).coff
26
27 $(TARGET).exe: $(OBJECTS) $(LIBS)
28 $(LD) \
29 $(OBJECTS) \
30 $(LIBS) \
31 -o $(TARGET).exe \
32 --subsystem native
33 $(NM) --numeric-sort $(TARGET).exe > $(TARGET).sym
34
35 include ../../rules.mak