Move Makefile.simple to just Makefile.

This commit is contained in:
Arthur O'Dwyer
2021-03-21 17:40:06 -04:00
parent 77cc0cc01b
commit 4c10b17b7e
7 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -145,7 +145,7 @@ string setdir = "../";
int main(int argc, char **argv) {
set_os(os);
int retval = 0; // for storing return values of some function calls
for(string fname: {"Makefile.loc", "Makefile.simple", "Makefile"})
for(string fname: {"Makefile.loc", "Makefile"})
if(file_exists(fname)) {
retval = mysystem("make -f " + fname + " language-data.cpp autohdr.h");
if (retval) { printf("error during preparation!\n"); exit(retval); }