reactos/vms/server/makefile
Emanuele Aliberti 2b0800d266 First attempt to convert the VMS demo server.
Note: it does NOT work.

svn path=/trunk/; revision=17279
2005-08-11 08:46:57 +00:00

25 lines
343 B
Makefile

# $Id$
#
# ReactOS VMS+ Environment Subsystem Server
#
PATH_TO_TOP = ../../reactos
TARGET_TYPE = program
TARGET_APPTYPE = native
TARGET_NAME = vmsss
TARGET_SDKLIBS = ntdll.a smdll.a
TARGET_CFLAGS = -Iinclude -I../include
TARGET_OBJECTS = vmsss.o init.o server.o
include $(PATH_TO_TOP)/rules.mak
include $(TOOLS_PATH)/helper.mk
# EOF