reactos/posix/apps/posixw32/Makefile
2003-01-05 18:29:41 +00:00

30 lines
458 B
Makefile

# $Id: Makefile,v 1.4 2003/01/05 18:27:19 robd Exp $
#
# Win32 Terminal Emulator for the POSIX+ subsystem.
#
PATH_TO_TOP = ../../../reactos
PATH_TO_TOP_PSX = ../..
TARGET_NAME = posixw32
TARGET_TYPE = program
TARGET_APPTYPE = console
TARGET_CFLAGS = -I$(PATH_TO_TOP_PSX)/include
TARGET_SDKLIBS = ntdll.a kernel32.a
TARGET_OBJECTS = \
$(TARGET_NAME).o \
console.o \
vt100.o
include $(PATH_TO_TOP)/rules.mak
include $(TOOLS_PATH)/helper.mk
# EOF