blob: 6ca201db66521d72396b1d91d9fe993175d1a83f (
plain) (
blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
--- work/heyu.dir/Makefile Thu Jan 6 23:47:16 2000
+++ Makefile Sun Jan 23 00:35:45 2000
@@ -4,7 +4,7 @@
MAN = /usr/local/man/man1
MAN5 = /usr/local/man/man5
GROUP = sys
-OWNER = bin
+OWNER = root
# set DFLAGS equal to:
@@ -13,19 +13,19 @@
# -DVOID if compiler doesn't understand 'void'
# -DMINIEXCH if using the DEC mini-exchange
-CFLAGS = -O $(DFLAGS) -Wall
+#CFLAGS = -O $(DFLAGS) -Wall
#LDFLAGS = -z -i
#LIBS = -lm -lc_s # uncomment if using shared libraries
LIBS = -lm -lc
## For LINUX, use the following defines in addition to what's above
-DFLAGS = -DSYSV -DPOSIX -DHAS_ITIMER -DLINUX
+#DFLAGS = -DSYSV -DPOSIX -DHAS_ITIMER -DLINUX
## For solaris, use the following defines in addition to what's above
# DFLAGS = -DSYSV -DPOSIX -DSOLARIS -DLOCKDIR=\"/var/spool/locks\" -DHASSELECT
## if you're using freebsd, just set the flag for select.
-# DFLAGS= -DHASSELECT
+DFLAGS= -DHASSELECT -DLOCKDIR=\"/var/tmp\"
## If you aren't sure, try this
#DFLAGS = -DSYSV -DPOSIX
@@ -54,9 +54,10 @@
EVERYTHING = $(OTHERSRC) $(SRCS)
heyu: $(OBJS) version.h
- cc $(LDFLAGS) -o heyu $(OBJS) $(LIBS)
+ $(CC) $(CFLAGS) $(LDFLAGS) $(DFLAGS) -o heyu $(OBJS) $(LIBS)
$(OBJS): x10.h
+ cc $(CFLAGS) $(DFLAGS) -c $<
eeprom.o: eeprom.h
|