Corrected makefiles for all tests and added new application GetSysMetrics.
[reactos.git] / reactos / apps / tests / tests / Parent_Child / Makefile
1 #
2 #
3 #
4 PATH_TO_TOP = ../../../..
5
6 PROGS = Parent_Child
7
8 OBJECTS = Parent_Child.o
9
10 LIBS = $(PATH_TO_TOP)/dk/w32/lib/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 Parent_Child.exe: $(OBJECTS)
23 $(CC) $(CFLAGS) -Wl,--subsystem,windows $(OBJECTS) $(LIBS) -o Parent_Child.exe
24 $(NM) --numeric-sort Parent_Child.exe > Parent_Child.sym
25
26 include $(PATH_TO_TOP)/rules.mak