5591f032341d744d7038308b50f06c195c8f5533
[reactos.git] / reactos / services / winlogon / makefile
1 # $Id: makefile,v 1.2 1999/08/29 13:45:06 dwelch Exp $
2 #
3 # Logon/login Application
4 #
5 # ReactOS Operating System
6 #
7 TARGET=winlogon
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
21 - $(RM) $(TARGET).exe
22 - $(RM) $(TARGET).sym
23 - $(RM) $(TARGET).coff
24
25 .phony: clean
26
27 $(TARGET).coff: $(TARGET).rc
28 $(RC) $(TARGET).rc $(TARGET).coff
29
30 $(TARGET).exe: $(OBJECTS) $(LIBS)
31 $(LD) \
32 $(OBJECTS) \
33 $(LIBS) \
34 -o $(TARGET).exe \
35 --subsystem native
36 $(NM) --numeric-sort $(TARGET).exe > $(TARGET).sym
37
38 include ../../rules.mak