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
93011167
Commit
93011167
authored
20 years ago
by
deuce
Browse files
Options
Downloads
Patches
Plain Diff
New build system toy build uifc library.
parent
4806a576
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/uifc/Common.make
+5
-0
5 additions, 0 deletions
src/uifc/Common.make
src/uifc/GNUmakefile
+27
-13
27 additions, 13 deletions
src/uifc/GNUmakefile
src/uifc/objects.mk
+2
-2
2 additions, 2 deletions
src/uifc/objects.mk
src/uifc/targets.mk
+2
-1
2 additions, 1 deletion
src/uifc/targets.mk
with
36 additions
and
16 deletions
src/uifc/Common.make
0 → 100644
+
5
−
0
View file @
93011167
UIFCLIB
=
$(
CONIO_SRC
)$(
DIRSEP
)$(
LIBODIR
)$(
DIRSEP
)$(
LIBPREFIX
)
uifc
$(
LIBFILE
)
UIFC_CFLAGS
=
-I
$(
UIFC_SRC
)
UIFC_LDFLAGS
=
-L
$(
UIFC_SRC
)$(
DIRSEP
)$(
LIBODIR
)
This diff is collapsed.
Click to expand it.
src/uifc/GNUmakefile
+
27
−
13
View file @
93011167
XPDEV
:=
../xpdev/
UIFC_SRC
:=
./
NEED_UIFC
:=
1
USE_UIFC32
:=
1
NEED_THREADS
:=
1
include
$(XPDEV)Common.gmake
include
$(UIFC_SRC)Common.gmake
# Executable Build Rule
${EXEODIR}/uifctest
:
$(LIBODIR)/uifctest.o $(OBJS)
@
echo
Linking
$@
$(
QUIET
)$(
CC
)
$(
CFLAGS
)
-o
$@
$(
LDFLAGS
)
$^
# smblib/Makefile
#########################################################################
# Makefile for Synchronet Message Base Library (SMBLIB) #
# For use with Borland C++ Builder 5+ or Borland C++ 5.5 for Win32 #
# @format.tab-size 4 #
# #
# usage: make #
#########################################################################
# $Id$
# Macros
#DEBUG = 1 # Comment out for release (non-debug) version
SRC_ROOT
=
..
# Cross platform/compiler definitions
include
$(SRC_ROOT)/build/Common.gmake
# defines clean and output directory rules
CFLAGS
+=
-I
$(
XPDEV_SRC
)
$(
CIOLIB_CFLAGS
)
# UIFC Library Link Rule
$(UIFCLIB)
:
$(OBJS)
@
echo
Creating
$@
...
$(
QUIET
)
ar rc
$@
$^
$(
QUIET
)
ranlib
$@
This diff is collapsed.
Click to expand it.
src/uifc/objects.mk
+
2
−
2
View file @
93011167
OBJS
=
$(
LIB
ODIR
)$(
SLASH
)
uifc32
.
$(
OFILE
)
\
$(
LIB
ODIR
)$(
SLASH
)
uifcx
.
$(
OFILE
)
OBJS
=
$(
OBJ
ODIR
)$(
DIRSEP
)
uifc32
$(
OFILE
)
\
$(
OBJ
ODIR
)$(
DIRSEP
)
uifcx
$(
OFILE
)
This diff is collapsed.
Click to expand it.
src/uifc/targets.mk
+
2
−
1
View file @
93011167
all
:
$(EXEODIR) $(LIBODIR) ${EXEODIR}/uifctest
UIFCLIB
=
$(
LIBODIR
)$(
DIRSEP
)$(
LIBPREFIX
)
uifc
$(
LIBFILE
)
all
:
$(OBJODIR) $(LIBODIR) $(UIFCLIB)
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