File: Imakefile

package info (click to toggle)
wmnet 1.06%2Bgit20211014-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 432 kB
  • sloc: ansic: 1,844; makefile: 7
file content (29 lines) | stat: -rw-r--r-- 604 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
DEPLIBS = $(DEPXLIB)
CC = gcc -Wall -O2

#ifdef LinuxArchitecture
STD_DEFINES = -Dlinux
DEFINES = -Dlinux_libc5
#if 1
DEFINES = -Dlinux_libc6
#endif
LOCAL_LIBRARIES = $(XLIB) -lm
#endif

#if defined (FreeBSDArchitecture) || defined (OpenBSDArchitecture)
LOCAL_LIBRARIES = $(XLIB) -lm -lkvm
INSTPGMFLAGS = -s -g kmem -m 2755
#endif

LINTLIBS = $(LINTXLIB)

#if defined (FreeBSDArchitecture) || defined (OpenBSDArchitecture)
SRCS = wmnet.c drivers.c getopt.c getopt1.c
OBJS = wmnet.o drivers.o getopt.o getopt1.o
#else
SRCS = wmnet.c drivers.c
OBJS = wmnet.o drivers.o
#endif


ComplexProgramTarget(wmnet)