mirror of
https://github.com/reactos/reactos.git
synced 2026-09-15 06:10:07 +08:00
24 lines
295 B
Makefile
24 lines
295 B
Makefile
# $Id$
|
|
|
|
PATH_TO_TOP = ../..
|
|
|
|
TARGET_TYPE = dynlink
|
|
|
|
TARGET_NAME = winsta
|
|
|
|
TARGET_CFLAGS = -g -Werror -Wall
|
|
|
|
TARGET_OBJECTS = \
|
|
main.o \
|
|
misc.o \
|
|
server.o \
|
|
ws.o
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
include $(TOOLS_PATH)/helper.mk
|
|
|
|
include $(TOOLS_PATH)/depend.mk
|
|
|
|
# EOF
|