Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
b44920c3
Commit
b44920c3
authored
22 years ago
by
rswindell
Browse files
Options
Downloads
Patches
Plain Diff
New makefile for Borland C++ for Win32.
parent
5e38ef73
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
xtrn/sbl/Makefile
+31
-0
31 additions, 0 deletions
xtrn/sbl/Makefile
with
31 additions
and
0 deletions
xtrn/sbl/Makefile
0 → 100644
+
31
−
0
View file @
b44920c3
##################################################################
# Makefile for SBL (Synchronet BBS List Online External Program) #
# For use with Borland C++ or C++ Builder (for Win32) #
# Tabstop=8 #
##################################################################
# Macros
CC
=
bcc32
LD
=
ilink32
XSDK
=
..
\s
dk
CFLAGS
=
-WM
-I
$(
XSDK
)
CFLAGS
=
$(
CFLAGS
)
-q
-d
-H
-X-
-w-csu
-w-pch
-w-ccc
-w-rch
-w-par
-w-8004
OBJS
=
xsdk.obj xsdkvars.obj xsdkwrap.obj
.path.c
=
.
;$(
XSDK
)
# Enable auto-dependency checking
.autodepend
.cacheautodepend
# Implicit C Compile Rule
.c.obj
:
@$(
CC
)
$(
CFLAGS
)
-c
$<
# Main EXE Link Rule
sbl.exe
:
$(OBJS) sbl.obj
@echo
Linking
$@
@$(CC)
$(CFLAGS)
-e$@
$**
clean
:
del
$(
OBJS
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment