rosapps
diff -u -r1.35 -r1.36
--- Makefile 1 Jun 2004 01:46:51 -0000 1.35
+++ Makefile 2 Jun 2004 02:27:03 -0000 1.36
@@ -11,14 +11,21 @@
APPS = calc \
cmdutils \
cmdutils$(SEP)mode \
+ cmdutils$(SEP)touch \
+ demos$(SEP)maze \
+ devutils$(SEP)genguid \
+ devutils$(SEP)zoomin \
dflat32 \
+ games$(SEP)winemine \
hcalc \
mc \
notepad \
notevil \
sysutils \
- demos$(SEP)maze\
sysutils$(SEP)ctm \
+ sysutils$(SEP)kill \
+ sysutils$(SEP)tcat \
+ sysutils$(SEP)tlist \
net$(SEP)ping \
net$(SEP)finger \
net$(SEP)telnet \
@@ -40,7 +47,6 @@
#
# Removed because it doesn't build correctly
#
-# sysutils$(SEP)tlist \
#
all: $(APPS)
rosapps/devutils/zoomin
diff -u -r1.1 -r1.2
--- makefile 29 Aug 2002 20:28:13 -0000 1.1
+++ makefile 2 Jun 2004 02:27:04 -0000 1.2
@@ -1,3 +1,4 @@
+# $Id: makefile,v 1.2 2004/06/02 02:27:04 royce Exp $
#
# ReactOS zoomin
#
@@ -19,35 +20,23 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
-
-PATH_TO_TOP = ../..
-TARGET = zoomin
+PATH_TO_TOP = ../../../reactos
-OBJS = framewnd.o \
- main.o
+TARGET_TYPE = program
-LIBS = -lkernel32 -lgdi32 -luser32
+TARGET_APPTYPE = windows
-all: $(TARGET).exe
+TARGET_NAME = zoomin
-$(TARGET).res: $(TARGET).rc
+TARGET_CFLAGS = -D_WIN32_IE=0x0501 -D_WIN32_WINNT=0x0501 -D__USE_W32API
-$(TARGET).exe: $(OBJS) $(TARGET).coff
- $(CC) -Wl,--subsystem,windows -o $(TARGET).exe $(OBJS) $(TARGET).coff $(LIBS)
- $(NM) --numeric-sort $(TARGET).exe > $(TARGET).sym
+TARGET_SDKLIBS = kernel32.a gdi32.a user32.a
+TARGET_OBJECTS = framewnd.o main.o
-main.h: resource.h
-
-main.o: main.c main.h framewnd.h
-
-framewnd.o: framewnd.c framewnd.h main.h
+include $(PATH_TO_TOP)/rules.mak
-clean:
- - $(RM) $(OBJS)
- - $(RM) $(TARGET).exe
- - $(RM) $(TARGET).sym
- - $(RM) $(TARGET).coff
+include $(TOOLS_PATH)/helper.mk
-include $(PATH_TO_TOP)/rules.mak
+# EOF