From bddddf190b17ee74ba6b859472c89bb1498d7cbc Mon Sep 17 00:00:00 2001 From: slederer Date: Thu, 15 May 2025 02:10:22 +0200 Subject: [PATCH] Bugfix Makefile compiling shortgen, update gitignore --- .gitignore | 1 + pcomp/Makefile | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 930fb01..85052db 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,7 @@ graph1.pas graph2.pas chase.pas pcomp/libgen +pcomp/shortgen pcomp/lsymgen pcomp/pcomp pcomp/sasm diff --git a/pcomp/Makefile b/pcomp/Makefile index 5234607..beb04c4 100644 --- a/pcomp/Makefile +++ b/pcomp/Makefile @@ -1,7 +1,6 @@ PCOMP=./pcomp SASM=./sasm LSYMGEN=./lsymgen -LIBGEN=./libgen .SUFFIXES: .SUFFIXES: .pas .o @@ -22,7 +21,7 @@ nativecomp: pcomp sasm libs $(PCOMP) sasm.pas $(PCOMP) pcomp.pas $(PCOMP) lsymgen.pas - $(PCOMP) libgen.pas + $(PCOMP) shortgen.pas nativeprogs: nativecomp $(PCOMP) ../progs/shell.pas