update for HEAD-2003021201
[reactos.git] / apps / tests / tests / hello2 / Makefile
1 #
2 #
3 #
4 PATH_TO_TOP = ../../../..
5
6 PROGS = hello2
7
8 OBJECTS = hello2.o
9
10 LIBS = # gdi32.a 
11 CFLAGS =
12
13 all: $(PROGS:%=%.exe)
14
15 .phony: all
16
17 clean:
18         - $(RM) *.o *.coff *.exe *.sym
19
20 .phony: clean
21
22 hello2.exe: $(OBJECTS)
23         $(CC) $(CFLAGS) -Wl,--subsystem,windows $(OBJECTS) $(LIBS) -o hello2.exe
24         $(NM) --numeric-sort hello2.exe > hello2.sym
25
26 include $(PATH_TO_TOP)/rules.mak