mirror of
https://github.com/reactos/reactos.git
synced 2026-06-02 01:11:03 +08:00
cleaning up the cvs views a bit and added a makefile I must have missed a while ago.
svn path=/trunk/; revision=3785
This commit is contained in:
@@ -6,4 +6,4 @@ advapi32.coff
|
||||
base.tmp
|
||||
junk.tmp
|
||||
temp.exp
|
||||
|
||||
*.o
|
||||
|
||||
1
reactos/lib/advapi32/misc/.cvsignore
Normal file
1
reactos/lib/advapi32/misc/.cvsignore
Normal file
@@ -0,0 +1 @@
|
||||
*.o
|
||||
1
reactos/lib/advapi32/reg/.cvsignore
Normal file
1
reactos/lib/advapi32/reg/.cvsignore
Normal file
@@ -0,0 +1 @@
|
||||
*.o
|
||||
1
reactos/lib/advapi32/sec/.cvsignore
Normal file
1
reactos/lib/advapi32/sec/.cvsignore
Normal file
@@ -0,0 +1 @@
|
||||
*.o
|
||||
1
reactos/lib/advapi32/service/.cvsignore
Normal file
1
reactos/lib/advapi32/service/.cvsignore
Normal file
@@ -0,0 +1 @@
|
||||
*.o
|
||||
1
reactos/lib/advapi32/token/.cvsignore
Normal file
1
reactos/lib/advapi32/token/.cvsignore
Normal file
@@ -0,0 +1 @@
|
||||
*.o
|
||||
1
reactos/lib/crtdll/wchar/.cvsignore
Normal file
1
reactos/lib/crtdll/wchar/.cvsignore
Normal file
@@ -0,0 +1 @@
|
||||
*.o
|
||||
@@ -1,3 +1,4 @@
|
||||
gdi32.coff
|
||||
gdi32.dll
|
||||
gdi32.nostrip.dll
|
||||
gdi32.nostrip.dll
|
||||
*.o
|
||||
|
||||
1
reactos/lib/gdi32/main/.cvsignore
Normal file
1
reactos/lib/gdi32/main/.cvsignore
Normal file
@@ -0,0 +1 @@
|
||||
*.o
|
||||
@@ -1 +1,2 @@
|
||||
win32k.c
|
||||
win32k.c
|
||||
*.o
|
||||
|
||||
1
reactos/lib/gdi32/objects/.cvsignore
Normal file
1
reactos/lib/gdi32/objects/.cvsignore
Normal file
@@ -0,0 +1 @@
|
||||
*.o
|
||||
@@ -6,4 +6,4 @@ kernel32.coff
|
||||
base.tmp
|
||||
junk.tmp
|
||||
temp.exp
|
||||
|
||||
*.o
|
||||
|
||||
@@ -2,6 +2,8 @@ msafd.a
|
||||
msafd.dll
|
||||
msafd.nostrip.dll
|
||||
msafd.coff
|
||||
msafd.sym
|
||||
base.tmp
|
||||
junk.tmp
|
||||
temp.exp
|
||||
*.o
|
||||
|
||||
1
reactos/lib/msafd/misc/.cvsignore
Normal file
1
reactos/lib/msafd/misc/.cvsignore
Normal file
@@ -0,0 +1 @@
|
||||
*.o
|
||||
@@ -7,3 +7,4 @@ ntdll.coff
|
||||
ntdll.dll
|
||||
ntdll.nostrip.dll
|
||||
temp.exp
|
||||
*.o
|
||||
|
||||
1
reactos/lib/ntdll/rtl/i386/.cvsignore
Normal file
1
reactos/lib/ntdll/rtl/i386/.cvsignore
Normal file
@@ -0,0 +1 @@
|
||||
*.o
|
||||
@@ -1,3 +1,5 @@
|
||||
secur32.dll
|
||||
secur32.nostrip.dll
|
||||
secur32.coff
|
||||
secur32.sym
|
||||
*.o
|
||||
|
||||
6
reactos/lib/shell32/control/.cvsignore
Normal file
6
reactos/lib/shell32/control/.cvsignore
Normal file
@@ -0,0 +1,6 @@
|
||||
control.exe
|
||||
control.coff
|
||||
control.sym
|
||||
control.dsp
|
||||
control.dsw
|
||||
*.o
|
||||
64
reactos/lib/shell32/control/makefile
Normal file
64
reactos/lib/shell32/control/makefile
Normal file
@@ -0,0 +1,64 @@
|
||||
#
|
||||
# ReactOS control
|
||||
#
|
||||
# Makefile
|
||||
#
|
||||
# Copyright (C) 2002 Robert Dickenson <robd@reactos.org>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
#
|
||||
|
||||
PATH_TO_TOP = ..
|
||||
|
||||
TARGET = control
|
||||
|
||||
BASE_CFLAGS = -DGCC -D_WIN32_IE=0x0400 -DUNICODE -D_UNICODE
|
||||
|
||||
RCFLAGS = -DGCC -D_WIN32_IE=0x0400
|
||||
|
||||
|
||||
OBJS = framewnd.o \
|
||||
listview.o \
|
||||
main.o
|
||||
|
||||
LIBS = -lgdi32 -luser32 -lkernel32 -lcomctl32
|
||||
|
||||
all: $(TARGET).exe
|
||||
|
||||
$(TARGET).res: $(TARGET).rc
|
||||
|
||||
$(TARGET).exe: $(OBJS) $(TARGET).coff
|
||||
$(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 listview.h main.h
|
||||
|
||||
listview.o: listview.c listview.h main.h
|
||||
|
||||
about.o: about.c about.h main.h
|
||||
|
||||
|
||||
clean:
|
||||
- $(RM) $(OBJS)
|
||||
- $(RM) $(TARGET).exe
|
||||
- $(RM) $(TARGET).sym
|
||||
- $(RM) $(TARGET).coff
|
||||
|
||||
include $(PATH_TO_TOP)/rules.mak
|
||||
@@ -1,3 +1,4 @@
|
||||
version.coff
|
||||
version.nostrip.dll
|
||||
version.dll
|
||||
version.dll
|
||||
version.sym
|
||||
|
||||
1
reactos/lib/version/misc/.cvsignore
Normal file
1
reactos/lib/version/misc/.cvsignore
Normal file
@@ -0,0 +1 @@
|
||||
*.o
|
||||
1
reactos/lib/winmm/misc/.cvsignore
Normal file
1
reactos/lib/winmm/misc/.cvsignore
Normal file
@@ -0,0 +1 @@
|
||||
*.o
|
||||
@@ -2,6 +2,7 @@ ws2_32.a
|
||||
ws2_32.dll
|
||||
ws2_32.nostrip.dll
|
||||
ws2_32.coff
|
||||
ws2_32.sym
|
||||
base.tmp
|
||||
junk.tmp
|
||||
temp.exp
|
||||
|
||||
1
reactos/lib/ws2_32/misc/.cvsignore
Normal file
1
reactos/lib/ws2_32/misc/.cvsignore
Normal file
@@ -0,0 +1 @@
|
||||
*.o
|
||||
Reference in New Issue
Block a user