cb0c26ba63161d155d931a282e17d6222c4d2ea1
[reactos.git] / reactos / apps / tests / tests / GetSystemInfo / Makefile
1 #
2 #
3 #
4 PATH_TO_TOP = ../../..
5
6 PROGS = GetSystemInfo
7
8 OBJECTS = GetSystemInfo.o
9
10 LIBS =
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 GetSystemInfo.exe: $(OBJECTS)
23 $(CC) $(CFLAGS) $(OBJECTS) $(LIBS) -o GetSystemInfo.exe
24 $(NM) --numeric-sort GetSystemInfo.exe > GetSystemInfo.sym
25
26 include ../../../rules.mak