mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
27 lines
406 B
Makefile
27 lines
406 B
Makefile
|
# $Id: makefile,v 1.1 2002/01/07 21:12:10 jfilby Exp $
|
||
|
#
|
||
|
# Jurgen Van Gael [jurgen.vangael@student.kuleuven.ac.be]
|
||
|
#
|
||
|
# Makefile for ReactOS regsvr32.dll
|
||
|
#
|
||
|
|
||
|
PATH_TO_TOP = ../..
|
||
|
|
||
|
TARGET_NORC = yes
|
||
|
|
||
|
TARGET_TYPE = program
|
||
|
|
||
|
TARGET_APPTYPE = console
|
||
|
|
||
|
TARGET_NAME = regsvr32
|
||
|
|
||
|
TARGET_SDKLIBS = kernel32.a
|
||
|
|
||
|
TARGET_OBJECTS = $(TARGET_NAME).o
|
||
|
|
||
|
include $(PATH_TO_TOP)/rules.mak
|
||
|
|
||
|
include $(TOOLS_PATH)/helper.mk
|
||
|
|
||
|
# EOF
|