*** empty log message ***
[reactos.git] / rosapps / notevil / makefile
1 # $Id: makefile,v 1.1 1999/05/15 07:23:34 ea Exp $
2 #
3 # ReactOS makefile for notevil
4 # Compiler: egcs 1.1.2
5 #
6 TARGET=notevil
7
8 all: $(TARGET).exe
9
10 OBJECTS = $(TARGET).o $(TARGET).coff
11
12 CLEAN_FILES = *.o $(TARGET).exe $(TARGET).sym $(TARGET).coff
13
14 clean: $(CLEAN_FILES:%=%_clean)
15
16 $(CLEAN_FILES:%=%_clean): %_clean:
17 - $(RM) $*
18
19 .phony: clean $(CLEAN_FILES:%=%_clean)
20
21 $(TARGET).exe: $(OBJECTS)
22 $(CC) $(OBJECTS) \
23 -o $(TARGET).exe \
24 -lkernel32 \
25 -luser32 \
26 -lcrtdll
27 $(NM) --numeric-sort $(TARGET).exe > $(TARGET).sym
28
29 $(TARGET).coff: $(TARGET).rc
30 $(RC) $(RFLAGS) $(TARGET).rc $(TARGET).coff
31
32 include ../rules.mak
33
34 # EOF