From a010c4406f62a10a6311f796645fecf72db11848 Mon Sep 17 00:00:00 2001 From: James Le Cuirot Date: Sun, 8 Oct 2023 22:09:51 +0100 Subject: [PATCH] Drop obsolete smakefile This appears to be for the ye olde SAS/C compiler! It wouldn't work now, even if you did have that. --- Makefile.in | 2 +- smakefile | 47 ----------------------------------------------- 2 files changed, 1 insertion(+), 48 deletions(-) delete mode 100644 smakefile diff --git a/Makefile.in b/Makefile.in index 70dadc0..67ec708 100644 --- a/Makefile.in +++ b/Makefile.in @@ -38,7 +38,7 @@ SRCS = main.c screen.c client.c frame.c icc.c \ config_util.c launchermodule.c DISTFILES = README.md MODULES.md INSTALL LICENSE amiwm.1 \ - configure configure.ac Makefile.in install-sh smakefile scoptions \ + configure configure.ac Makefile.in install-sh \ *.[chly] system.amiwmrc.in def_*.info *.map \ Background Background_resize Background_resize_norepeat \ Background_stretch Launcher Xresources.amiwm.in Amilogo.?m \ diff --git a/smakefile b/smakefile deleted file mode 100644 index b53e0c2..0000000 --- a/smakefile +++ /dev/null @@ -1,47 +0,0 @@ - -PROGRAMS = amiwm requestchoice - -AMIWM_HOME = amiwm: - -SRCS1 = main.c drawinfo.c client.c frame.c icc.c \ - icon.c menu.c diskobject.c gram.c lex.c rc.c -OBJS1 = main.o drawinfo.o client.o frame.o icc.o \ - icon.o menu.o diskobject.o gram.o lex.o rc.o - -SRCS2 = requestchoice.c drawinfo.c -OBJS2 = requestchoice.o drawinfo.o - - -all : $(PROGRAMS) - -amiwm : $(OBJS1) - sc LINK PNAME amiwm $(OBJS1) - -requestchoice : $(OBJS2) - sc LINK PNAME requestchoice $(OBJS2) - -gram.c : gram.y - bison -y -d -o gram.c gram.y - -lex.c : lex.l - flex -t < lex.l > lex.c - -gram.o : gram.c - -lex.o : lex.c - -menu.o : menu.c - sc menu DEF AMIWM_HOME="$(AMIWM_HOME)" - -rc.o : rc.c - sc rc DEF AMIWM_HOME="$(AMIWM_HOME)" - -clean : tidy - -delete FORCE $(PROGRAMS) - -tidy : - -delete FORCE \#?.(o|q|tmp|lnk) lex.c gram.c gram.h core - -install : - copy amiwm requestchoice system.amiwmrc def_tool.info $(AMIWM_HOME) -