mirror of
https://github.com/morgant/mlclock.git
synced 2024-11-21 11:33:01 +00:00
22 lines
445 B
Plaintext
22 lines
445 B
Plaintext
# mlclock is macintosh like clock
|
|
|
|
RCFILE = .mlclockrc
|
|
CC = gcc
|
|
OPTION =
|
|
|
|
# If function dosen't find , add -lsocket or whatever you need .
|
|
# This is example .
|
|
#ADD_LIBRARIES = -lxpg4 -lsocket -lnsl
|
|
ADD_LIBRARIES = -lxpg4
|
|
|
|
#---You shouldn't have to change anything below this line.---
|
|
|
|
LOCAL_LIBRARIES = $(XLIB) $(ADD_LIBRARIES)
|
|
|
|
SRCS = mlclock.c
|
|
OBJS = $(SRCS:.c=.o)
|
|
|
|
DEFINES = $(OPTION) -DRCFILE=\"${RCFILE}\"
|
|
|
|
ComplexProgramTarget( mlclock )
|