PSX: more work on the terminal emulator that runs in the W32 subsystem.
[reactos.git] / posix / apps / csrterm / Makefile
1 # $Id: Makefile,v 1.1 2002/03/17 22:15:39 ea Exp $
2 #
3 # POSIX+ Terminal Emulator that runs in the W32 subsystem.
4 #
5 PATH_TO_TOP=../../../..
6 PATH_TO_TOP_PSX=../..
7
8 TARGET_NAME=csrterm
9 TARGET_TYPE=program
10 TARGET_APPTYPE=console
11 TARGET_CFLAGS =-I$(PATH_TO_TOP_PSX)/include
12 TARGET_SDKLIBS=ntdll.a kernel32.a
13 TARGET_OBJECTS=\
14 $(TARGET_NAME).o \
15 console.o \
16 vt100.o \
17 $(TARGET_NAME).coff
18
19 include $(PATH_TO_TOP)/rules.mak
20
21 include $(TOOLS_PATH)/helper.mk
22
23 # EOF