mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
change to zoomin Makefile to get it compiling, and enable touch, genguid, zoomin, winemine, kill, tcat, and tlist - patch by Travis Snoozy <ai2097@yahoo.com>
svn path=/trunk/; revision=9587
This commit is contained in:
parent
08ff887056
commit
5053990958
2 changed files with 20 additions and 25 deletions
|
@ -11,14 +11,21 @@ include rules.mak
|
||||||
APPS = calc \
|
APPS = calc \
|
||||||
cmdutils \
|
cmdutils \
|
||||||
cmdutils$(SEP)mode \
|
cmdutils$(SEP)mode \
|
||||||
|
cmdutils$(SEP)touch \
|
||||||
|
demos$(SEP)maze \
|
||||||
|
devutils$(SEP)genguid \
|
||||||
|
devutils$(SEP)zoomin \
|
||||||
dflat32 \
|
dflat32 \
|
||||||
|
games$(SEP)winemine \
|
||||||
hcalc \
|
hcalc \
|
||||||
mc \
|
mc \
|
||||||
notepad \
|
notepad \
|
||||||
notevil \
|
notevil \
|
||||||
sysutils \
|
sysutils \
|
||||||
demos$(SEP)maze\
|
|
||||||
sysutils$(SEP)ctm \
|
sysutils$(SEP)ctm \
|
||||||
|
sysutils$(SEP)kill \
|
||||||
|
sysutils$(SEP)tcat \
|
||||||
|
sysutils$(SEP)tlist \
|
||||||
net$(SEP)ping \
|
net$(SEP)ping \
|
||||||
net$(SEP)finger \
|
net$(SEP)finger \
|
||||||
net$(SEP)telnet \
|
net$(SEP)telnet \
|
||||||
|
@ -40,7 +47,6 @@ APPS = calc \
|
||||||
#
|
#
|
||||||
# Removed because it doesn't build correctly
|
# Removed because it doesn't build correctly
|
||||||
#
|
#
|
||||||
# sysutils$(SEP)tlist \
|
|
||||||
#
|
#
|
||||||
|
|
||||||
all: $(APPS)
|
all: $(APPS)
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
# $Id: makefile,v 1.2 2004/06/02 02:27:04 royce Exp $
|
||||||
#
|
#
|
||||||
# ReactOS zoomin
|
# ReactOS zoomin
|
||||||
#
|
#
|
||||||
|
@ -20,34 +21,22 @@
|
||||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
#
|
#
|
||||||
|
|
||||||
PATH_TO_TOP = ../..
|
PATH_TO_TOP = ../../../reactos
|
||||||
|
|
||||||
TARGET = zoomin
|
TARGET_TYPE = program
|
||||||
|
|
||||||
OBJS = framewnd.o \
|
TARGET_APPTYPE = windows
|
||||||
main.o
|
|
||||||
|
|
||||||
LIBS = -lkernel32 -lgdi32 -luser32
|
TARGET_NAME = zoomin
|
||||||
|
|
||||||
all: $(TARGET).exe
|
TARGET_CFLAGS = -D_WIN32_IE=0x0501 -D_WIN32_WINNT=0x0501 -D__USE_W32API
|
||||||
|
|
||||||
$(TARGET).res: $(TARGET).rc
|
TARGET_SDKLIBS = kernel32.a gdi32.a user32.a
|
||||||
|
|
||||||
$(TARGET).exe: $(OBJS) $(TARGET).coff
|
TARGET_OBJECTS = framewnd.o main.o
|
||||||
$(CC) -Wl,--subsystem,windows -o $(TARGET).exe $(OBJS) $(TARGET).coff $(LIBS)
|
|
||||||
$(NM) --numeric-sort $(TARGET).exe > $(TARGET).sym
|
|
||||||
|
|
||||||
|
|
||||||
main.h: resource.h
|
|
||||||
|
|
||||||
main.o: main.c main.h framewnd.h
|
|
||||||
|
|
||||||
framewnd.o: framewnd.c framewnd.h main.h
|
|
||||||
|
|
||||||
clean:
|
|
||||||
- $(RM) $(OBJS)
|
|
||||||
- $(RM) $(TARGET).exe
|
|
||||||
- $(RM) $(TARGET).sym
|
|
||||||
- $(RM) $(TARGET).coff
|
|
||||||
|
|
||||||
include $(PATH_TO_TOP)/rules.mak
|
include $(PATH_TO_TOP)/rules.mak
|
||||||
|
|
||||||
|
include $(TOOLS_PATH)/helper.mk
|
||||||
|
|
||||||
|
# EOF
|
||||||
|
|
Loading…
Reference in a new issue