Files
oldlinux-files/study/linux-travel/MINIX-1.5/1.5/Source/commands/m4/Makefile
2024-02-19 00:25:23 -05:00

15 lines
407 B
Makefile

# -DEXTENDED #if you like to get paste & spaste macros.
# -DVOID #if your C compiler does NOT support void.
# -DGETOPT #if you STILL do not have getopt in your library.
# -DDUFFCP #if you do not have fast memcpy in your library.
#
CFLAGS = -DEXTENDED
OBJS = main.s eval.s serv.s look.s misc.s expr.s
INCL = mdef.h extr.h patchlevel.h
m4: $(OBJS) $(INCL)
cc -o m4 $(OBJS)
clean:
@rm -f *.bak *.s m4