mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
8c130e007e
Modified to link against /dk/psx/lib/psxdll.a svn path=/trunk/; revision=2827
40 lines
733 B
Makefile
40 lines
733 B
Makefile
# $Id: Makefile,v 1.2 2002/04/07 13:53:51 ea Exp $
|
|
#
|
|
# Tu run it in Win32 console mode, undefine __SUBSYSTEM_WINDOWS__
|
|
# and pass "console" in the ld's --subsystem option.
|
|
#
|
|
#
|
|
PATH_TO_TOP=../../../..
|
|
|
|
PATH_TO_PSX_TOP=../..
|
|
|
|
TARGET_NAME=sh
|
|
|
|
CFLAGS=-D__SUBSYSTEM_WINDOWS__
|
|
|
|
OBJECTS=$(TARGET_NAME).o $(TARGET_NAME).coff
|
|
|
|
LIBRARIES=\
|
|
$(PATH_TO_PSX_TOP)/lib/crt0w32.o \
|
|
$(PATH_TO_TOP)/dk/psx/lib/psxdll.a
|
|
|
|
$(TARGET_NAME): $(OBJECTS) $(LIBRARIES)
|
|
$(CC) \
|
|
$(CFLAGS) \
|
|
$(OBJECTS) \
|
|
$(LIBRARIES)\
|
|
-o $@ \
|
|
-Wl,--subsystem,windows\
|
|
-nostartfiles \
|
|
-nostdlib
|
|
|
|
$(TARGET_NAME).coff: $(TARGET_NAME).rc
|
|
$(RC) \
|
|
--include-dir $(PATH_TO_TOP)/include \
|
|
--output-format coff \
|
|
$< $@
|
|
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
# EOF
|