mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
24 lines
458 B
Makefile
24 lines
458 B
Makefile
|
# $Id: Makefile,v 1.3 2002/10/29 04:44:59 rex 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 \
|
||
|
$(TARGET_NAME).coff
|
||
|
|
||
|
include $(PATH_TO_TOP)/rules.mak
|
||
|
|
||
|
include $(TOOLS_PATH)/helper.mk
|
||
|
|
||
|
# EOF
|