Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
7ab787fa
Commit
7ab787fa
authored
Feb 27, 2002
by
Andriy Palamarchuk
Committed by
Alexandre Julliard
Feb 27, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed alternative make scripts.
parent
8f925ae5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
174 deletions
+0
-174
lccmake.bat
programs/control/lccmake.bat
+0
-19
lccmake
programs/notepad/lccmake
+0
-89
lccmakefile
programs/view/lccmakefile
+0
-19
makefile.bcc
programs/wcmd/makefile.bcc
+0
-47
No files found.
programs/control/lccmake.bat
deleted
100644 → 0
View file @
8f925ae5
@ECHO OFF
rem
rem this is a quick and dirty batch file to recompile control.exe
rem in a native windows environment using LCC. You may want to edit
rem the following line, which should point to your LCC base directory:
rem
set LCCDIR=C:\LCC
rem ---------------------------------------------------
rem it's safe not to change anything behind this line
rem ---------------------------------------------------
if exist control.obj del control.obj
%LCCDIR%\bin\lcc.exe -g2 -I%LCCDIR%\include\ -DWIN32 control.c
%LCCDIR%\bin\lcclnk.exe -o control2.exe control.obj %LCCDIR%\lib\shell32.lib
if exist control.obj del control.obj
:EXIT
programs/notepad/lccmake
deleted
100644 → 0
View file @
8f925ae5
#
# Makefile for LCC-WIN32
#
# Copyright 1999 Marcel Baur (mbaur@g26.ethz.ch)
# To be distributed under the Wine License
#
# Use lccmake -f lccmake to use this makefile
#
# See http://www.cs.virgina.edu/~lcc-win32 for
# information about LCC-WIN32
#
#
# LCC home directory
#
LCCHOME=C:\LCC
#
# individual flags for LCC, LCCLNK, LRC
#
CFLAGS=-O -DLCC -g2
LNKFLAGS=-O winepad.exe -subsystem windows
LRCFLAGS=/r /v /m
#
# available languages
#
LANGUAGES=Da De En Es Fi Fr Sw
#
# default language
#
LANGUAGE=En
#
# required include libraries
#
LIBS=SHELL32.LIB
#
# object files
#
OBJS=main.obj dialog.obj license.obj license_En.obj language.obj
#
# ---[ it is save not to change anything behind this line ]--- #
#
winepad.exe: $(OBJS) resources
$(LCCHOME)\bin\lcclnk $(LNKFLAGS) $(OBJS) notepad.res $(LIBS)
@echo *** "winepad.exe" successfully created
resources: $(RESOURCES)
FOR %%i IN ($(LANGUAGES)) DO $(LCCHOME)\bin\lrc $(LRCFLAGS) %%i.rc
copy /b $(LANGUAGE).res notepad.res
clean:
if exist winepad.exe erase winepad.exe
if exist main.obj erase main.obj
if exist dialog.obj erase dialog.obj
if exist license.obj erase license.obj
if exist license_En.obj erase license_En.obj
if exist language.obj erase language.obj
if exist notepad.res erase notepad.res
FOR %%i IN ($(LANGUAGES)) DO IF EXIST %%i.res erase %%i.res
FOR %%i IN ($(LANGUAGES)) DO IF EXIST %%i.map erase %%i.map
help:
@echo lccmake help - display this help
@echo lccmake - to compile winepad.exe
@echo lccmake resources - to compile .res files
@echo lccmake clean - to clean up
#
# some more targets (for novice users and compatibility reasons only)
#
distclean: clean
@echo *** next time please use "lccmake clean"
all: winepad.exe
@echo *** next time please use "lccmake" (without parameters)
#
# please make sure that at least one empty line follows this statement
#
programs/view/lccmakefile
deleted
100644 → 0
View file @
8f925ae5
WINE = ../../wine
LCCINC = c:\\lcc\\include
OBJS = view.obj init.obj winmain.obj
RES = viewrc.res
.SUFFIXES: .rc .obj .res
.c.obj:
$(WINE) "lcc -I$(LCCINC) $<"
.rc.res:
$(WINE) "lrc $<"
view.exe: $(OBJS) $(RES)
$(WINE) "lcclnk $(OBJS) $(RES)"
clean:
rm *.exe *.obj *.res
programs/wcmd/makefile.bcc
deleted
100644 → 0
View file @
8f925ae5
#-----------------------------------------------------------------------------
VERSION
=
BCB.01
#-----------------------------------------------------------------------------
!ifndef
BCB
BCB
=
$(MAKEDIR)
\.
.
!endif
PROJECT
=
wcmd.exe
OBJFILES
=
builtins.obj wcmdmain.obj directory.obj batch.obj
RESFILES
=
wcmdrc.rc
RESDEPEN
=
$(RESFILES)
LIBFILES
=
DEFFILE
=
#-----------------------------------------------------------------------------
CFLAG1
=
-c
CFLAG2
=
-H
=
C:
\B
C
\P
ROJECTS
\C
MD.CSM
-nC
:
\B
C
\P
ROJECTS
\C
MD
\
-IC
:
\B
C
\I
NCLUDE
;
C:
\B
C
\P
ROJECTS
\C
MD
PFLAGS
=
-U
$(BCB)
\l
ib
\o
bj
-jph
-m
RFLAGS
=
-I
$(BCB)
\i
nclude
;
C:
\B
C
\I
NCLUDE
;
C:
\B
C
\P
ROJECTS
\C
MD
LFLAGS
=
-ap
-Tpe
-c
-x
-L
$(BCB)
\l
ib
;
$(BCB)
\l
ib
\o
bj
;
C:
\B
C
\L
IB
IFLAGS
=
-i
LINKER
=
tlink32
#-----------------------------------------------------------------------------
ALLOBJ
=
c0x32.obj
$(OBJFILES)
ALLRES
=
$(RESFILES)
ALLLIB
=
$(LIBFILES)
noeh32.lib import32.lib cw32mt.lib
# ---------------------------------------------------------------------------
.autodepend
$(PROJECT)
:
$(OBJFILES) $(RESDEPEN) $(DEFFILE)
$(BCB)\BIN\$(LINKER)
@&&!
$(LFLAGS)
+
$(ALLOBJ),
+
$(PROJECT),,
+
$(ALLLIB),
+
$(DEFFILE),
+
$(ALLRES)
!
.cpp.obj
:
$(BCB)\BIN\bcc32
$(CFLAG1)
$(CFLAG2)
-o$*
$*
.c.obj
:
$(BCB)\BIN\bcc32
$(CFLAG1)
$(CFLAG2)
-o$*
$**
.rc.res
:
$(BCB)\BIN\brcc32
$(RFLAGS)
$<
#-----------------------------------------------------------------------------
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment