minor corrections by M.Taguchi
[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 = -Wall -Werror
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 $(PATH_TO_TOP)/rules.mak